-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (79 loc) · 4.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!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>API CRUD Postman</title>
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<script defer src="script.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="main">
<div class="header">
<header class="p-3 text-bg-dark">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="index.html" class="nav-link px-2 text-secondary">Home</a></li>
<li><a href="users.html" class="nav-link px-2 text-white">Users List</a></li>
</ul>
<div class="text-end">
<button type="button" class="btn btn-outline-light me-2">Login</button>
<button type="button" class="btn btn-warning">Sign-up</button>
</div>
</div>
</div>
</header>
</div>
<div class="content">
<div class="login-form">
<div id="alertMsg" class="" role="alert"></div>
<div class="card" style="width: 500px;">
<div class="card-body">
<div>
<h1 class="h4 mb-4">Create an account</h1>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="userName" placeholder="Name">
<label for="name">Name</label>
<div id="validation" class=""></div>
</div>
<div class="form-floating mb-3">
<input type="email" class="form-control" id="userEmail" placeholder="name@example.com">
<label for="email">Email address</label>
<div id="validation" class=""></div>
</div>
<div class="form-floating mb-4">
<input type="password" class="form-control" id="userPassword" placeholder="Password">
<label for="password">Password</label>
<div id="validation" class=""></div>
</div>
<button type="button" class="btn btn-primary w-100 py-2 mt-1" onclick="saveUsers()">Sign up</button>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1">
<svg class="bi" width="30" height="24"><use xlink:href="#bootstrap"></use></svg>
</a>
<span class="mb-3 mb-md-0 text-body-secondary">© 2023 Company, Inc</span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3"><a class="text-body-secondary" href="#"><i class="bi bi-twitter"></i></a></li>
<li class="ms-3"><a class="text-body-secondary" href="#"><i class="bi bi-instagram"></i></a></li>
<li class="ms-3"><a class="text-body-secondary" href="#"><i class="bi bi-facebook"></i></a></li>
</ul>
</footer>
</div>
</div>
</div>
</body>
</html>