-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (57 loc) · 2.87 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Register</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body class="d-flex justify-content-center align-items-center bg-success min-vh-100">
<div class="col-lg-3 col-md-5">
<form class="bg-light p-5 rounded custom-shadow " id="SigninForm" action="todo.html">
<!-- Sign up -->
<h1 class="text-center text-decoration-underline ">Sign Up</h1>
<!-- name -->
<div class="mb-3 mt-4 ">
<label for="Name" class="form-label">Name</label>
<input type="text" class="form-control" id="Name" required>
<p id="NameErrorMsg"></p>
</div>
<!-- email -->
<div class="mb-3">
<label for="Email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="Email" required>
<p id="EmailErrorMSg"></p>
</div>
<!-- Password -->
<div class="mb-3 input-test">
<label for="Password" class="form-label">Password</label>
<div class="input-test">
<input type="password" class="form-control" id="Password" required>
<span id="EyeIcon" class="icons position-absolute">
<i class="bi bi-eye-fill "></i>
</span>
<p id="PasswordErrormsg"></p>
</div>
</div>
<!-- Confirm Password -->
<div class="mb-3 ">
<label for="ConfirmPassword" class="form-label">Confirm Password</label>
<div class="input-test">
<input type="password" class="form-control" id="ConfirmPassword" required>
<p id="ConfirmPasswordErrorMsg"></p>
<span id="EyeIcon1" class="icons position-absolute">
<i class="bi bi-eye-fill "></i>
</span>
</div>
</div>
<button class="btn btn-primary w-100" id="Btn" type="submit">Submit</button>
<p class="text-center mt-1 ">Already have an account? <a href="login.html">Login</a></p>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>