-
Notifications
You must be signed in to change notification settings - Fork 1
/
email-verification.html
66 lines (60 loc) · 1.82 KB
/
email-verification.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
<!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" />
<link rel="stylesheet" href="styles/email-verification.css" />
<title>Email Verification</title>
</head>
<body>
<div id="main">
<!-- Enter Email -->
<div id="emailSent" class="box">
<h1>Enter your email</h1>
<p>Password Reset</p>
<input
type="email"
name="email"
id="email"
placeholder="Enter your registered email"
/>
<div>
<button onclick="otpSent()">Send OTP</button>
<p id="empty">Please enter email</p>
</div>
</div>
<!-- Enter OTP -->
<div id="enterOtp" class="box">
<h1>Enter OTP</h1>
<p>Check mail for OTP</p>
<input type="number" name="otp" id="otp" placeholder="Enter Otp" />
<div>
<button id="subBtn" onclick="otpEntered()">Submit</button>
<button id="veriBtn">Verified</button>
<p id="wrong">Wrong OTP. Enter correct OTP</p>
</div>
</div>
<!-- Enter New Password -->
<!-- <div id="resetPass" class="box">
<h1>Reset Pass</h1>
<p>Set new password</p>
<input
type="password"
name="new-pass"
id="new-pass"
placeholder="Enter a new password"
/>
<input
type="password"
name="confirm-pass"
id="confirm-pass"
placeholder="Re-enter your new password"
/>
<button onclick="passReseted()">Confirm</button>
<p id="notMatch">Password did not match. Enter again.</p>
</div> -->
</div>
</body>
</html>
<script src="scripts/email-verification.js"></script>