-
Notifications
You must be signed in to change notification settings - Fork 3
/
OTP.html
42 lines (40 loc) · 1.32 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
<!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>Payment</title>
<link rel="stylesheet" href="OTP.css">
</head>
<body>
<div id="navbar">
<div id="left">
<div>
<a href="index.html">
<img src="https://upload.wikimedia.org/wikipedia/commons/b/bc/Myntra_Logo.png">
</a>
</div>
</div>
<div id="centre">
<span><a href="cart.html">BAG</a>------------- <a href="Address.html">ADDRESS</a> -------------<span> <a href="payment.html">PAYMENT</a></span> </span>
</div>
<div id="right">
<div>
<img src="https://constant.myntassets.com/checkout/assets/img/sprite-secure.png">
</div>
<div id="secure">
<span>100% secure</span>
</div>
</div>
</div>
<div id="OTPbox">
<h1>Enter OTP</h1>
<p>OTP has been sent to your mobile number</p>
<input id="otP" type="number" placeholder="Enter the OTP">
<P>RESEND OTP</P>
<button id="submit">SUBMIT</button>
</div>
</body>
</html>
<script src="OTP.js"></script>