-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
63 lines (59 loc) · 3.51 KB
/
signup.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.0">
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<title>SignUp</title>
</head>
<body>
<section id="sign" class="py-2">
<div class="container rounded rounded-3 bg-white py-4 d-flex justify-content-center align-items-center shadow">
<div class="row ">
<div class="col-lg-12 text-center">
<h1 class="mb-3">Smart Login System</h1>
<div class="inputs">
<div class="user-sec d-flex justify-content-center align-items-center mb-4">
<i class="fa-solid fa-user me-3"></i>
<input type="text" id="signUpName" class="form-control rounded rounded-5"
placeholder="Enter Your Name">
</div>
<div class="email-sec d-flex justify-content-center align-items-center mb-4">
<i class="fa-solid fa-envelope me-3"></i>
<input type="email" name="" id="signUpEmail" class="form-control rounded rounded-5"
placeholder="Enter Your Email">
</div>
<div class="password-sec d-flex justify-content-center align-items-center mb-4">
<i class="fa-solid fa-lock me-3"></i>
<input type="password" name="" id="signUpPassword" class="form-control rounded rounded-5"
placeholder="Enter Your Password">
</div>
<span class="wrong d-none text-danger text-center">All Inputs Are Required!</span>
<span class="passed d-none text-success text-center">Success!</span>
<span class="exist d-none text-center text-danger">This Email already exists, try another
one!</span>
<span class="validatePass d-none text-center text-danger">password should contain atleast one
number and one special character</span>
<span class="validateEmail d-none text-center text-danger">Email should start with length 4
to 16 and contain @ and .!</span>
<button type="button" class="btn text-white my-3 bg-main" id="btnSignUp" onclick="signUp()">Sign
Up</button>
<p>You have an account? <a href="./login.html" class="sign text-black text-decoration-none">Sign
in</a></p>
</div>
</div>
</div>
</div>
</section>
<script src="jS/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>