-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (37 loc) · 1.3 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>OTP Verification Card Design | Rustcode</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
</head>
<body>
<div class="container d-flex justify-content-center align-items-center">
<div class="card text-center">
<div class="card-header p-5">
<img src="mobile.png">
<h5 class="mb-2">OTP VERIFICATION</h5>
<div>
<small>code has been send to ******1258</small>
</div>
</div>
<div class="input-container d-flex flex-row justify-content-center mt-2">
<input type="text" class="m-1 text-center form-control rounded" maxlength="1">
<input type="text" class="m-1 text-center form-control rounded" maxlength="1">
<input type="text" class="m-1 text-center form-control rounded" maxlength="1">
<input type="text" class="m-1 text-center form-control rounded" maxlength="1">
<input type="text" class="m-1 text-center form-control rounded" maxlength="1">
</div>
<div>
<small>
didn't get the otp
<a href="#" class="text-decoration-none">Resend</a>
</small>
</div>
<div class="mt-3 mb-5">
<button class="btn btn-success px-4 verify-btn">verify</button>
</div>
</div>
</div>
</body>
</html>