-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<link rel="stylesheet" href="styles.css">
<title>User Form</title>
</head>
<body>
<main id="app-container" class="content-wrapper">
<article class="form-area">
<form>
<div class="label-area">
<label for="first-name">First Name</label>
<label for="last-name">Last Name</label>
<label for="dob">Date Of Birth</label>
<label for="set-password">Password</label>
<label for="re-password">Re-enter Password</label>
</div>
<div class="input-area">
<input type="text" name="fast-name" id="first-name" required>
<input type="text" name="last-name" id="last-name" required>
<input type="date" class="dob" name="dob" id="dob" required>
<input type="password" name="password" id="set-password" required>
<input type="password" name="re-password" id="re-password" required>
</div>
</form>
<button class="submit-btn">Add User</button>
</article>
<article class="user-list-area">
<ul id="user-list"></ul>
</article>
</main>
<div class="background-gradient"></div>
<script type="module" src="main.js"></script>
</body>
</html>