-
Notifications
You must be signed in to change notification settings - Fork 4
/
otp.html
36 lines (36 loc) · 1.37 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
<!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>Otp Page</title>
<style link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"></style>
<link rel="stylesheet" href="./styles/otp.css" />
</head>
<body>
<div id="sam_main_div">
<div id="sam_img_div">
<img id="sam_banner_img" src="https://www.rentomojo.com/public/images/smartAuth/cat-happy.svg" alt="banner" />
</div>
<div id="sam_form_div">
<img src="https://www.rentomojo.com/public/images/smartAuth/close.svg" alt="cross" id="sam_back_to_home"
onclick="backHomeFunc()" />
<div>
<p id="sam_heading">Please enter the OTP</p>
</div>
<div id="sam_input_div">
<form id="form">
<input type="password" autocomplete="off" id="sam_number" placeholder="Enter the OTP* " required />
<p id="otp_sent"></p>
<p id="change_number" onclick="numberChangeFunc()">Change Number</p>
<!-- <input type="submit" disabled value="Continue" id="sam_submit"> -->
<button disabled id="sam_submit" type="submit">Continue</button>
</form>
</div>
</div>
</div>
</body>
</html>
<script src="./scripts/otp.js"></script>