-
Notifications
You must be signed in to change notification settings - Fork 0
/
Registration.html
53 lines (52 loc) · 1.89 KB
/
Registration.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body bgcolor="green">
<table align="center" border="5px" bgcolor="orange">
<form name="form" method="post" action="congo.html">
<tr>
<td><label><b>Name:</b></label></td>
<td><input type="text" placeholder="Enter username" required></td>
</tr>
<tr>
<td><label><b>Password:</b></label></td>
<td><input type="password" placeholder="Enter password" required></td>
</tr>
<tr>
<td><label><b>Email Id:</b></label></td>
<td><input type="text" placeholder="Enter Email" required ></td>
</tr>
<tr>
<td><label><b>Phone Number:</b></label></td>
<td><input type="text" placeholder="Enter Phone Number" required></td>
</tr>
<tr>
<td><label><b>Gender:</b></label></td>
<td><label>Male</label><input type="radio" name="g"><label>Female</label><input type="radio" name="g"></td>
</tr>
<tr>
<td><label><b>Date Of Birth:</b></label></td>
<td><input type="date" required></td>
</tr>
<tr>
<td><label><b>Language Known:</b></label></td>
<td><label>English:</label><input type="checkbox"><label>Hindi:</label><input type="checkbox"><label>Tamil:</label><input type="checkbox"><label>Telgu:</label><input type="checkbox"></td>
</tr>
<tr>
<td><label><b>Address:</b></label></td>
<td><textarea rows="3" cols="30"></textarea></td>
</tr>
<tr>
<td>
<input type="submit" value="Register">
<input type="reset" value="Clear">
</td>
</tr>
</form>
</table>
</body>
</html>