-
Notifications
You must be signed in to change notification settings - Fork 0
/
otp-confirm.html
87 lines (75 loc) · 3.23 KB
/
otp-confirm.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="FrogBID - Web App" name="description">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta content="#0134d4" name="theme-color">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<!-- Title -->
<title>FrogBID - Web App</title>
<!-- Favicon -->
<link href="img/core-img/favicon.ico" rel="icon">
<link href="img/icons/icon-96x96.png" rel="apple-touch-icon">
<link href="img/icons/icon-152x152.png" rel="apple-touch-icon" sizes="152x152">
<link href="img/icons/icon-167x167.png" rel="apple-touch-icon" sizes="167x167">
<link href="img/icons/icon-180x180.png" rel="apple-touch-icon" sizes="180x180">
<!-- Style CSS -->
<link href="style.css" rel="stylesheet">
<!-- Web App Manifest -->
<link href="manifest.json" rel="manifest">
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="spinner-grow text-primary" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<!-- Internet Connection Status -->
<div class="internet-connection-status" id="internetStatus"></div>
<!-- Back Button -->
<div class="login-back-button">
<a href="otp.html">
<i class="bi bi-arrow-left-short"></i>
</a>
</div>
<!-- Login Wrapper Area -->
<div class="login-wrapper d-flex align-items-center justify-content-center">
<div class="custom-container">
<div class="text-center">
<img alt="" class="mx-auto mb-4 d-block" src="img/bg-img/38.png">
<h3>Verify Phone Number</h3>
<p class="mb-4">Enter the OTP code sent to <strong>012 3456 7890</strong></p>
</div>
<!-- OTP Verify Form -->
<div class="otp-verify-form mt-4">
<form action="https://designing-world.com/affan-v1.7/home.html">
<div class="input-group mb-3 otp-input-group">
<input class="form-control" maxlength="1" placeholder="-" type="text" value="">
<input class="form-control" maxlength="1" placeholder="-" type="text" value="">
<input class="form-control" maxlength="1" placeholder="-" type="text" value="">
<input class="form-control" maxlength="1" placeholder="-" type="text" value="">
</div>
<button class="btn btn-primary w-100">Verify & Proceed</button>
</form>
</div>
<!-- Term & Privacy Info -->
<div class="login-meta-data text-center">
<p class="mt-3 mb-0">Don't received the OTP? <span class="otp-sec" id="resendOTP"></span></p>
</div>
</div>
</div>
<!-- All JavaScript Files -->
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/internet-status.js"></script>
<script src="js/dark-rtl.js"></script>
<script src="js/otp-timer.js"></script>
<script src="js/otp-input-switch.js"></script>
<script src="js/active.js"></script>
<script src="js/pwa.js"></script>
</body>
</html>