-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex
30 lines (30 loc) · 1.11 KB
/
index
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
<!DOCTYPE html>
<html>
<head>
<body>
<form>
<div>
<label for="first-name" First Name:></label>
<input name="first-name" type="text" placeholder="Enter your first name">
</div>
<div>
<label for="Last-name" Last Name:></label>
<input name="Last-name" type="text" placeholder="Enter your last name">
</div>
<div>
<label for="Email" Email:></label>
<input name="email" type="email" placeholder="Enter your email">
</div>
<div>
<label for="DOB" DOB:></label>
<input name="DOB" type="date" placeholder="Enter your date of birth">
</div>
<div>
<label for="password" Password:></label>
<input name="password" type="password" placeholder="Enter your password">
</div>
<input type="submit">
</form>
</body>
</head>
</html>