-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (36 loc) · 1.19 KB
/
index.html
File metadata and controls
50 lines (36 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML_FORMS</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<form id="user-form">
<h3>Registration Form</h3>
<label for="name">Name</label>
<input required type="text" id="name" name="name">
<label for="email">Email</label>
<input required type="email" id="email" name="email">
<label for="password">Password</label>
<input required type="password" id="password" name="password">
<label for="dob">Date of Birth</label>
<input required type="date" id="dob" name="dob">
<div class="checkbox-container">
<input required type="checkbox" name="accept terms" id="accept terms">
<label for="accept terms">Accept Terms & Conditions</label>
</div>
<button type="submit" id="submit">Submit</button>
</form>
<div id = "entries" >
<div>
<h2>Entries</h2>
<div id="user-entries"></div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>