-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathsignup-1.html
43 lines (39 loc) · 1.9 KB
/
signup-1.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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="background-style">
<form id="step1Form">
<h1>Sign Up</h1><br>
<h2>
<progress class="prog-bar" id="progress-bar" value="50" max="100"></progress>
</h2>
<input type="text" id="firstname" name="firstname" placeholder="First Name" required><br>
<input type="text" id="lastname" name="lastname" placeholder="Last Name" required><br>
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob" required><br>
<select id="gender" name="gender" required>
<option value="" disabled selected hidden>Select Gender</option>
<option value="male">Male</option>
<option value="female">Famale</option>
<option value="other">Other</option>
</select><br>
<input type="text" id="email" name="email" placeholder="Email" required><br>
<input type="text" id="phone" name="phone" placeholder="Phone" required><br>
<input type="password" id="password" name="password" placeholder="Password" required><br>
<input type="password" id="confirm_password" name="confirm_password" placeholder="Confirm Password" required><br><br>
<label for="terms">
<input type="checkbox" id="terms" name="terms" required> I agree to Terms and Conditions.
</label>
<label for="privacy">
<input type="checkbox" id="privacy" name="privacy" required> I trust you with my data.
</label><br><br>
<button type="submit" class="button-base primary-button" onclick="signupStep1()">Sign up</button>
</form>
<script src="signup.js"></script>
</body>
</html>