forked from Anjali280/SEPHORA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
otp.html
53 lines (51 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
43
44
45
46
47
48
49
50
51
52
53
<!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>
*{
font-family: sans-serif;
}
body{
display: grid;
grid-template-columns: 1fr;
max-width: fit-content;
margin: auto;
}
#centerit{
margin-top: 100px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
padding: 20px;
}
input{
margin-top: 10px;
padding: 5px;
}
#checkoutbutton{
margin: 30px 10px 30px 10px;
padding: 12px 0px 12px 0px;
background-color: #ff3399;
color: white;
font-weight: 600;
border: 0px;
display: block;
width: 100px;
}
</style>
</head>
<body>
<div id="centerit">
<form >
<h4>OTP is sent to <span id="showphonenumber"></span></h4>
<input type="number" placeholder="Enter 4 Digit number" id="otptext">
<input type="submit" value="Enter" id="checkoutbutton">
</form>
<p id="result"></p>
</div>
</body>
</html>
<script src="otp.js">
</script>