-
Notifications
You must be signed in to change notification settings - Fork 104
/
signup.html
53 lines (48 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<title>Apni Dukaan</title>
<link rel="stylesheet" href="./static/signup.css">
<link rel="icon" href="./Images/favicon.ico" type="image/x-icon">
<script>
function displayMessageReset() {
alert("Alert! You Have Clicked On Reset Button, Please Fill Your Data Again");
}
</script>
</head>
<body>
<section>
<div class="box">
<div class="form">
<div class="form_logo"><img src="Images\Logo\ApniDukan.png"></div>
<h2>SignUp</h2>
<form action="home.html">
<div class="inputBox">
<input type="text" placeholder="Username" required pattern="[a-zA-Z0-9]+" title="Only AlphaNumeric Characters Allowed">
<img src="./Images/user.png">
</div>
<div class="inputBox">
<input type="text" placeholder="Email Id" required pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$">
<img src="./Images/user.png">
</div>
<div class="inputBox">
<input type="password" placeholder="Password" id="pass" required pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@$!%*#?&]).{8,16}"
title="Must contain at least one number, one uppercase letter, one lowercase letter, one special character, and length should be minimum 8 and maximum 16 characters">
<img src="./Images/lock.png">
<span class="show-hide">
<i class="fas fa-eye" id="eye" onclick="spl()"></i>
</span>
</div>
<label class="remember"><input type="checkbox">Remember Me</label>
<div class="inputBox">
<input class="btn" type="submit" value="SignUp">
</div>
</form>
<p>Have an <a href="login.html">Account</a>?</p>
</div>
</div>
</section>
</body>
<script>
</script>
</html>