-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
48 lines (37 loc) · 1.25 KB
/
form.html
File metadata and controls
48 lines (37 loc) · 1.25 KB
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
47
48
<!DOCTYPE html>
<html>
<head>
<title>Registration form</title>
<link rel="stylesheet" href="./../css/form.css">
</head>
<body>
<form>
<div class="container">
<h1>Registration Form</h1>
<p>Please fill the form to create an account.</p><hr>
<label for="name">Enter Your Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">E-mail Id:</label>
<input type="email" id="email" name="email"><br><br>
<label for="password" >Password:</label>
<input type="password" id="password" name="password"><br><br>
<label for="confirm">Confirm Password:</label>
<input type="password" id="confirm" name="confirm"><br><br>
<label for="date">Date of Birth:</label>
<input type="date" id="date" name="date"><br><br>
<label for="gender">Gender</label><br>
<input type="radio" name="gender" id="gender">Male <br>
<input type="radio" name="gender" id="gender">Female <br><br>
<hr>
<label for="checkbox"> By creating an account you agree to our Terms and conditions:</label>
<input type="checkbox" id="checkbox" name="checkbox"><br><br>
<button type="submit">Register</button>
</div>
<div class="sign-in">
<p>Already have an account?
<a href="#">Sign in</a>
</p>
</div>
</form>
</body>
</html>