-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
33 lines (32 loc) · 1.26 KB
/
signup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Health Index - Sign Up</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- Left side with image -->
<div class="left-section">
<img src="image.png" alt="Health Image">
</div>
<!-- Right side with sign-up form -->
<div class="right-section">
<h1>Create a New Account</h1>
<form class="signup-form">
<input type="text" placeholder="Full Name" class="input-box" required>
<input type="email" placeholder="Email" class="input-box" required>
<input type="password" placeholder="Password" class="input-box" required>
<input type="password" placeholder="Confirm Password" class="input-box" required>
<button class="submit-btn" type="submit">Sign Up</button>
</form>
<div class="already-account">
<p>Already have an account?</p>
<a href="login.html" class="create-account-btn">Login Here</a> <!-- Link back to Login -->
</div>
</div>
</div>
</body>
</html>