-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotp.html
67 lines (54 loc) · 2.16 KB
/
otp.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
<!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>Document</title>
<link rel="stylesheet" type="text/css" href="./styles/otp.css">
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"
rel="stylesheet"
/>
</head>
<body>
<div id="container">
<div id="header">
<div id="cblogo">
<img id="cbImage" onclick="gotoHome()" src="/images/cb_logo.svg" alt="" />
</div>
</div>
<div id="content">
<div id="logo">
<div id="leftpart">
<p>Home</p>
<span class="material-icons-outlined IcnAdjust">
chevron_right
</span>
<p id="ac">Accounts</p>
</div>
<div id="rightpart">
<img src="/images/cb_logo_plus_color.svg" alt="">
</div>
</div>
<div id="mainContent">
<div>
<h3>Enter the 6 digit OTP</h3>
<p id="email-on-otp"></p>
</div>
<div id="userInput">
<input type="text" maxlength="1" id="frst" onkeyup="clickEvent(this,'sec')">
<input type="text" maxlength="1" id="sec" onkeyup="clickEvent(this,'third')">
<input type="text" maxlength="1" id="third" onkeyup="clickEvent(this,'forth')">
<input type="text" maxlength="1" id="forth" onkeyup="clickEvent(this,'fifth')">
<input type="text" maxlength="1" id="fifth" onkeyup="clickEvent(this,'sixth')">
<input type="text" maxlength="1" id="sixth">
</div>
<button id="otp-submitbtn" onclick="gotoPlans()">SUBMIT</button>
</div>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="./scripts/otp.js">
</script>