-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREGISTRATION.html
More file actions
54 lines (46 loc) · 1.8 KB
/
REGISTRATION.html
File metadata and controls
54 lines (46 loc) · 1.8 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
<html>
<head>
<title>REGISTRATION PAGE</title>
</head>
<body>
<form>
<table align = "center" cellspacing = "20">
<tr>
<th><label>Name </label></th>
<td><input type = "text" name = "Name" placeholder = "Enter Username">
</td>
</tr>
<tr>
<th><label>Password </label></th>
<td><input type = "password" name = "password" placeholder = "Enter password">
</td>
</tr>
<tr>
<th><label>E-mail id </label></th>
<td><input type = "text" name = "emailid" placeholder = "Enter gmail">
</td>
</tr>
<tr>
<th><label>Phone number </label></th>
<td><input type = "text" name = "phone number" placeholder = "Enter phone number"><br>
</td>
</tr>
<tr>
<th><label>Sex </label></th>
<td><input type = "radio" name = "Gender" value="m" placeholder = "enter your gender">MALE
<input type = "radio" name = "Gender" value="f" placeholder = "enter your gender">FEMALE</td>
</tr>
<tr>
<th><label>Date of birth </label></th>
<td><input type = "date" min = "1985-06-18" max = "2021-06-18"></td>
</tr>
<tr>
<th><label>Languages known</label></th>
<td><input type = "checkbox" name = "English" value = "English"/>English<input type = "checkbox" name = "Telugu" value = "Telugu"/>Telugu<input type = "checkbox" name = "Hindi" value = "Hindi"/>Hindi<input type = "checkbox" name = "Tamil" value = "Tamil"/>Tamil</td>
</tr>
<tr>
<th><label>Address</label></th>
<td><textarea rows = "5" cols = "20"/></textarea></td>
</table>
</body>
</html>