-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScitizen signup.html
52 lines (48 loc) · 1.47 KB
/
Scitizen signup.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
<html>
<head>
<title> Citizen Sinup</title>
<link rel="stylesheet" type="text/css" href="Scitizen signup.css">
</head>
<body>
<h1>CITIZEN SIGNUP FORM</h1>
<form action = "index.html">
<label for = "fname">First Name: </label>
<input type = "text" id = "fname" name=" "></br></br>
<label for = "Lname">Last Name :</label>
<input type = "text" id = "lname" name=" "></br></br>
<label for = "em">Email id:</label>
<input type ="text" id ="em" name=""> </br></br>
Gender :</br>
<br>
<label for="male"> Male </label>
<input type="radio" id="male" name="ss">
<label for="female"> female </label>
<input type="radio" id="female" name="ss">
<label for="other"> Other </label>
<input type="radio" id="other" name="ss">
</br>
<br></br>
Date of Birth :
<input type ="date" name ="day"></br></br>
AreaCode :
<select>
<option value = "-">--</option>
<option value = "A01">A1 </option>
<option value = "A02"> A02</option>
<option value = "A02">A02</option>
<option value = "A03">A03</option>
<option value = "A04">A04</option>
<option value = "A05">A05</option>
<option value = "Other">Other</option>
</select></br></br>
Mobile :
<input type = "number" name = ""></br></br>
Address:
<textarea row ="40" col = "50"></textarea>
</br></br>
<label for = "em">E_id:</label>
<input type ="text" id ="ei" name=""> </br></br>
<input type ="submit" value = "Submit">
</form>
</body>
</html>