-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathneha_form2.html
65 lines (43 loc) · 1.01 KB
/
neha_form2.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
<!DOCTYPE html>
<html>
<head>
<title>form</title>
</head>
<body>
<form action="form2.php" method="POST">
<table>
<tr>
<td>Name:</td>
<td><input type="text" name="name" required><br></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="pass" required><br></td>
</tr>
<tr>
<td>Gender:</td>
<td><input type="radio" name="gender">Male
<input type="radio" name="gender">Female<br></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="text" name="mail" required><br></td>
</tr>
<tr>
<td>Phone no:<br></td>
<td>
<select name="phonecode">
<option selected hidden value="">select code</option>
<option value="+91">+91</option>
<option value="+21">+21</option>
<option value="+51">+51</option>
<option value="+61">+61</option>
</select>
<input type="phone" name="phone" required>
</td>
</tr>
<tr><td><input type="submit" value="submit"></td></tr>
</table>
</form>
</body>
</html>