-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.23 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 2.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<h1>Registration Form</h1>
<form action="">
<fieldset>
<table>
<tr>
<td><label for="fname">First Name</label></td>
<td><input type="text" id="fname" name="fname" required /></td>
</tr>
<tr>
<td><label for="lname">Last Name</label></td>
<td><input type="text" id="lname" name="lname" required /></td>
</tr>
<tr>
<td><label for="mobile">Mobile Number</label></td>
<td><input type="tel" id="mobile" name="mobile" required /></td>
</tr>
<tr>
<td><label for="email">Email</label></td>
<td><input type="email" id="email" name="email" required /></td>
</tr>
<tr>
<td><label for="password">Password</label></td>
<td>
<input type="password" id="password" name="password" required />
</td>
</tr>
<tr>
<td><label for="cpassword">Confirm Password</label></td>
<td>
<input type="password" id="cpassword" name="cpassword" required />
</td>
</tr>
<tr>
<td><label for="dob">DOB</label></td>
<td><input type="date" id="dob" name="dob" required /></td>
</tr>
<tr>
<td>Gender</td>
<td>
<input type="radio" id="male" name="gender" value="male" required />
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" />
<label for="female">Female</label>
<input type="radio" id="trans" name="gender" value="trans" />
<label for="trans">Trans</label>
</td>
</tr>
<tr>
<td><label for="city">Select City</label></td>
<td>
<select id="city" name="city" required>
<option value="">--Select--</option>
<option value="bangalore">Bangalore</option>
<option value="chennai">Chennai</option>
<option value="mumbai">Mumbai</option>
</select>
</td>
</tr>
<tr>
<td><label for="image">Upload Image</label></td>
<td><input type="file" id="image" name="image" /></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Register" />
</td>
</tr>
</table>
</fieldset>
</form>