-
Notifications
You must be signed in to change notification settings - Fork 0
/
otpVer.html
30 lines (30 loc) · 1.45 KB
/
otpVer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="login.css">
<title>OTP Verification</title>
</head>
<body>
<div class="container-otpverify">
<header>
<h1>Please Verify Account</h1>
<p class="text">Enter the six digit code we sent to your email address to verify you.</p>
</header>
<main class="main-otpverify">
<input id="1-number" type="number" min="0" max="9" maxlength="1" oninput="this.value = this.value.slice(0, 1)">
<input id="2-number" type="number" min="0" max="9" maxlength="1" oninput="this.value = this.value.slice(0, 1)">
<input id="3-number" type="number" min="0" max="9" maxlength="1" oninput="this.value = this.value.slice(0, 1)">
<input id="4-number" type="number" min="0" max="9" maxlength="1" oninput="this.value = this.value.slice(0, 1)">
<input id="5-number" type="number" min="0" max="9" maxlength="1" oninput="this.value = this.value.slice(0, 1)">
<input id="6-number" type="number" min="0" max="9" maxlength="1" oninput="this.value = this.value.slice(0, 1)">
</main>
<footer class="footer-otpverify">
<button id="verify-btn">Verify & Continue</button>
<button id="cancel">Cancel</button>
</footer>
</div>
<script src="otpVer.js"></script>
</body>
</html>