-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
24 lines (23 loc) · 941 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>registration</title>
</head>
<body>
<form action="credential.html">
<legend>Registration form</legend>
<table>
First name:<input type="text" name="text" value=""><br>
Second name:<input type="text" name="text" value=""><br>
Gender:Male<tr><input type="radio" name="radio">Female<input type="radio" name="radio"><br></tr>
D.O.B:<input type="date" name="date"><br>
Status:Married<input type="radio" name="radio">Single<input type="radio" name="radio"><br>
Email:<input type="email" name="email"><br>
Phone No:<input type="tel" name="tel"><br>
<input type="submit" name="submit">
</table>
</form>
</body>
</html>