-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.php
51 lines (50 loc) · 1.22 KB
/
form.php
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="310" border="1">
<tr>
<th width="166" scope="row">Name</th>
<td width="128"><input type="text" name="Name" id="Name"></td>
</tr>
<tr>
<th scope="row">Address</th>
<td><textarea name="Address" id="Address"></textarea></td>
</tr>
<tr>
<th scope="row">Gender</th>
<td><p>
<input type="radio" name="radio" id="radio" value="radio">
Male</p>
<p>
<input type="radio" name="radio2" id="radio2" value="radio2">
Female</p></td>
</tr>
<tr>
<th scope="row">Locality</th>
<td><select name="Locality" id="Locality">
</select></td>
</tr>
<tr>
<th scope="row">Username</th>
<td><input type="text" name="Username" id="Username"></td>
</tr>
<tr>
<th scope="row">Password</th>
<td><input type="password" name="password" id="password"></td>
</tr>
<tr>
<th scope="row"> </th>
<td> </td>
</tr>
</table>
<p>
<input type="button" name="button" id="button" value="Submit">
</p>
</form>
</body>
</html>