-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.78 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<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 Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<div class="register-box">
<form action="" id="registrationForm">
<h2>Registration</h2>
<div class="input-box">
<span class="icon"><ion-icon name="person"></ion-icon></span>
<input type="name" id="name" required>
<label>Name</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="mail"></ion-icon></span>
<input type="email" id="email" required>
<label>Email</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="lock-closed"></ion-icon></span>
<input type="password" id="password" required>
<label>Password</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="calendar"></ion-icon></span>
<input type="date" id="dob" required>
</div>
<div class="form-group">
<label>
<input type="checkbox" id="terms" required> I accept the terms and conditions
</label>
</div>
<button type="submit">Register</button>
</form>
</div>
<div class="entry-box">
<h2>Entries</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Password</th>
<th>Dob</th>
<th>Accepted terms?</th>
</tr>
</thead>
<tbody id="output"></tbody>
</table>
</div>
</section>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="index.js"></script>
</body>
</html>