-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.65 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
<!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" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet" crossorigin="anonymous">
<link rel="stylesheet" href="index.css" />
<link href="bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<title>Registration Form</title>
</head>
<body>
<div class="form">
<form id="user-form">
<h1>Registration Form</h1>
<label for="name">Name</label>
<input required type="text" name="name" id="name" />
<label for="email">E-mail</label>
<input required type="email" name="email" id="email" />
<label for="password">Password</label>
<input required type="password" name="password" id="password" />
<label for="dob">Date Of Birth</label>
<input required type="date" name="dob" id="dob" />
<label for="acceptTerms">Accept Terms And Conditions</label>
<input type="checkbox" name="acceptTerms" id="acceptTerms" />
<button type="submit">Submit</button>
</form>
</div>
<div class="container">
<div
class="relative bg white px-6 mt-5 pt-10 pb-8 shadow-xl ring-1 ring-gray-900/5 sm:mx-auto sm:rounded-lg sm:px-10">
<div class="mx-auto"><h2>Entries</h2>
<div class="align" id="user-entries"></div>
<script src="./index.js">
</script>
</div>
</body>
</html>