-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
39 lines (38 loc) · 1.62 KB
/
form.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
<!doctype html>
<html>
<head>
<title>CYBER SECURITY</title>
<style>
table
{
background-color:black;
color:white;
}
</style>
</head>
<body>
<table align="center" border="0">
<h1 align="center" colspan="2">REGISTRATION FORM</h1><br>
<tr><td>Salutation:<td><input type="radio" name="m">Mr.
<input type="radio" name="m">Mrs.
<input type="radio" name="m">Miss
<input type="radio" name="m">Dr.
<input type="radio" name="m">Prof.<br></td></tr>
<tr><td>First name:<td><input type="text" placeholder="Enter your First name"></td></tr>
<tr><td>Last name:<td><input type="text" placeholder="Enter your Last name"></td></tr>
<tr><td>Father Name:<td><input type="text" placeholder="Enter your Father name"></td></tr>
<tr><td>Mother name:<td><input type="text" placeholder="Enter your Mother name"></td></tr>
<tr><td>Email id:<td><input type="text" placeholder="Enter your Email id"></td></tr>
<tr><td>Password:<td><input type="password" placeholder="Enter your Password"></td></tr>
<td style=color:red;>Ensure that your password contains minimum 8 characters</td>
<tr><td>Date of Birth:<td><input type="number" placeholder="Enter your Date of Birth"></td></tr>
<td style=color:red;>Write in dd/mm/yyyy format</td>
<tr><td>Mobile Number:<td><input type="number" placeholder="Enter your Mobile Number"></td></tr>
<tr><td>Gender:<td><input type="radio" name="g">Male
<input type="radio" name="g">Female
<input type="radio" name="g">Others
<tr><td>Adhar number:<td><input type="text" placeholder="Enter your Adhar number"></td></tr>
<tr><td align="center" colspan="2"><input type="submit" value="SUBMIT"></td></tr>
</table>
</body>
</html>