-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathotp-verification.html
More file actions
31 lines (29 loc) · 1.61 KB
/
otp-verification.html
File metadata and controls
31 lines (29 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OTP Verification</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/js/bootstrap.bundle.min.js" integrity="sha384-ndDqU0Gzau9qJ1lfW4pNLlhNTkCfHzAVBReH9diLvGRem5+R9g2FzA8ZGN954O5Q" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="otp.css">
</head>
<body>
<div class="otp-container">
<h5 class="mb-4">Verification Code</h5>
<p class="text-secondary small">Enter the code sent to your email <br> ending with <strong>xxx@gmail.com</strong></p>
<form action="product-list.html">
<div class="d-flex justify-content-center my-4">
<input type="text" maxlength="1" class="otp-input" required>
<input type="text" maxlength="1" class="otp-input" required>
<input type="text" maxlength="1" class="otp-input" required>
<input type="text" maxlength="1" class="otp-input" required>
<input type="text" maxlength="1" class="otp-input" required>
</div>
<button type="submit" class="btn btn-primary w-100 my-3">Verify</button>
</form>
<div class="resend">Didn't receive a code? <a href="#">Resend Code</a></div>
</div>
</body>
</html>