-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (65 loc) · 2 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<style >
.error {
color: red;
}
</style>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="form">
<div class="main">
<h1>SIGN UP FORM</h1></div>
<form id="signupform">
<div><p>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
</div></p>
<div><p>
<label for="age">Age:</label>
<input type="number" id="age" name="age">
</div></p>
<div><p>
<label for="gender">Gender:</label>
<input type="radio" id="gender-male" name="gender" value="male"> Male
<input type="radio" id="gender-female" name="gender" value="female"> Female
</div></p>
<div><p>
<label for="city">City:</label>
<input type="text" id="city" name="city">
</div></p>
<div>
<p> <submit="labelvalidateForm for="qualification">Educational Qualification:</label>
<select id="qualification" name="qualification">
<option value="">Select</option>
<option value="10th">10th</option>
<option value="12th">12th</option>
<option value="Bachelors">Bachelors</option>
<option value="Masters">Masters</option>
</select></p>
</div>
<div><p>
<label for="phone">Phone Number:</label>
<input type="text" id="phone" name="phone">
</div></p>
<div><p>
<label for="email">Email:</label>
<input type="text" id="email" name="email">
</div></p>
<div><p>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
</div></p>
<div><p>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm-password">
</div></p>
<input type="submit" value="Sign Up">
</form></div>
<script src="index.js">
</script>
</body>
</html>