-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (72 loc) · 2.32 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
<!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>Signup Form</title>
<!-- === CSS === -->
<link rel="stylesheet" href="./style.css" />
<!-- === Box Icon CSS === -->
<link
href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<header>Signup</header>
<form action="https://www.jrpranav.com" method="POST">
<!-- Email -->
<div class="field email-field">
<div class="input-field">
<input type="email" class="email" placeholder="Enter Your Email" />
</div>
<span class="error email-error">
<i class="bx bx-error-circle error-icon"></i>
<p class="error-text">Please enter a valid email</p>
</span>
</div>
<!-- Create Password -->
<div class="field create-password">
<div class="input-field">
<input
type="password"
class="Password"
placeholder="Create Password"
/>
<i class="bx bx-hide show-hide"></i>
</div>
<span class="error password-error">
<i class="bx bx-error-circle error-icon"></i>
<p class="error-text">
Please enter atleast 8 charatcer with number, symbol, small and
capital letter.
</p>
</span>
</div>
<!-- Confirm Password -->
<div class="field confirm-password">
<div class="input-field">
<input
type="password"
class="cPassword"
placeholder="Confirm Password"
/>
<i class="bx bx-hide show-hide"></i>
</div>
<span class="error cPassword-error">
<i class="bx bx-error-circle error-icon"></i>
<p class="error-text">Password don't match</p></span
>
</div>
<!-- Button -->
<div class="input-field button">
<input type="submit" value="Submit Now" />
</div>
</form>
</div>
<!-- === Script === -->
<script src="./script.js"></script>
</body>
</html>