This page was made as a personal project in connection with an educational exercise.
This is NOT the official site of the company or brand identified on the page. The creator of this page is NOT affiliated with the company or brand in any way. DO NOT enter any personal information (such as logins, passwords or credit card numbers) on this site.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
otp.html
148 lines (147 loc) · 3.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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></title>
<style>
* {
font-family: "Zen Kaku Gothic Antique", sans-serif;
background-color: #121212;
}
#otppage {
width: 40%;
height: 400px;
background-color: #121212;
border: 1px solid white;
border-radius: 8px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding-bottom: 15px;
}
#verify {
width: 70%;
height: 40px;
margin: 0px 0px 0px 0px;
}
#verifyotp {
font-size: 20px;
margin: 13px 0px -2px 163px;
color: white;
}
#cross {
width: 25px;
height: 33px;
margin: 0px 0px 0px 486px;
}
.cross {
color: white;
font-size: 35px;
padding: 0px 0px 0px 0px;
}
#sent {
width: 70%;
height: 40px;
margin: 0px 0px 0px 0px;
}
#senttext {
font-size: 16px;
margin: 10px 0px -2px 163px;
color: #979090;
}
#inputotp {
display: flex;
width: 70%;
height: 60px;
margin: 11px 0px 0px 83px;
}
.inputotp {
width: 50px;
height: 50px;
}
.otp {
width: 45px;
height: 50px;
border-radius: 5px;
border: 1px solid #c7c4c4;
background-color: #121212;
color: white;
font-size: 20px;
text-align: center;
}
#didnot {
width: 70%;
height: 40px;
margin: 45px 0px 0px 118px;
}
.didnot {
color: white;
font-size: 14px;
font-weight: bold;
margin: 0px 0px 0px 13px;
}
#resend {
color: #00e9bf !important;
text-decoration: underline;
}
#submit {
width: 70%;
height: 46px;
padding: 0px 0px 0px 0px;
margin: 3px 0px 0px 80px;
border-radius: 5px;
border: none;
}
#submitbtn {
width: 100%;
height: 46px;
margin: 0px 0px 0px 0px;
border-radius: 5px;
outline: none;
background-color: #00e9bf;
border: 1px solid #00e9bf;
font-size: 15px;
}
</style>
</head>
<body>
<div id="otppage">
<div id="cross">
<p class="cross">×</p>
</div>
<div id="verify">
<p id="verifyotp">VERIFY WITH OTP</p>
</div>
<div id="sent">
<p id="senttext">sent to 9264907558</p>
</div>
<div id="inputotp">
<div class="inputotp" style="margin-left: 39px">
<input class="otp" type="text" maxlength="1" />
</div>
<div class="inputotp" style="margin-left: 14px">
<input class="otp" type="text" maxlength="1" />
</div>
<div class="inputotp" style="margin-left: 14px">
<input class="otp" type="text" maxlength="1" />
</div>
<div class="inputotp" style="margin-left: 18px">
<input class="otp" type="text" maxlength="1" />
</div>
</div>
<div id="didnot">
<p class="didnot">
Didn't Recieve Your OTP?<a id="resend">Resend it</a>
</p>
</div>
<div id="submit">
<button id="submitbtn" onclick="window.location.href='address.html'">
Submit OTP
</button>
</div>
</div>
</body>
</html>