-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
46 lines (37 loc) · 1.56 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
34
35
36
37
38
39
40
41
42
43
44
45
46
<!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>
<div class="container">
<h1>Sign Up</h1>
<form id="signup-form">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm_password">Confirm Password:</label>
<input type="password" id="confirm_password" name="confirm_password" required>
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob" required>
<label for="age">Age:</label>
<input type="number" id="age" name="age" required>
<label for="job">Job:</label>
<input type="text" id="job" name="job" required>
<label for="address">Address:</label>
<textarea id="address" name="address" required></textarea>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" required>
<button type="submit">Sign Up</button>
</form>
<p>Already have an account? <a href="login.html">Log In</a></p>
</div>
<script src="script.js"></script>
</body>
</html>