-
Notifications
You must be signed in to change notification settings - Fork 15
/
page-otp.html
97 lines (95 loc) · 4.9 KB
/
page-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#0134d4">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags-->
<!-- Title-->
<title>AC-Mobile UI Neumorphism</title>
<!-- Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com/">
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap-icons.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/ion.rangeSlider.min.css">
<link rel="stylesheet" href="css/dataTables.bootstrap4.min.css">
<link rel="stylesheet" href="css/apexcharts.css">
<!-- Core Stylesheet-->
<link rel="stylesheet" href="style.css">
<!-- Web App Manifest-->
<link rel="manifest" href="manifest.json">
</head>
<body>
<!-- Preloader-->
<div class="preloader d-flex align-items-center justify-content-center" id="preloader">
<div class="spinner-grow text-primary" role="status">
<div class="sr-only">Loading...</div>
</div>
</div>
<!-- Internet Connection Status-->
<div class="internet-connection-status" id="internetStatus"></div>
<!-- Back Button-->
<div class="login-back-button"><a href="page-register.html"><svg width="32" height="32" viewBox="0 0 16 16" class="bi bi-arrow-left-short" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z"/>
</svg></a></div>
<!-- Login Wrapper Area-->
<div class="login-wrapper d-flex align-items-center justify-content-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-sm-9 col-md-7 col-lg-6 col-xl-5">
<div class="text-center px-4"><img class="mx-auto mb-4 d-block" src="img/bg-img/36.png" alt="">
<h3>Phone Verification</h3>
<p class="mb-4">We will send you an OTP on this phone number.</p>
</div>
<!-- OTP Send Form-->
<div class="otp-form mt-5 px-4">
<form action="page-otp-confirm.html">
<div class="input-group mb-3">
<select class="input-group-text form-select" name="dialingcode" aria-label="Default select example">
<option value="+880" selected>+880</option>
<option value="+920">+920</option>
<option value="+061">+061</option>
</select>
<input class="form-control" type="text" placeholder="Enter phone number">
</div>
<button class="btn btn-primary w-100" type="submit">Send Now</button>
</form>
</div>
<!-- Term & Privacy Info-->
<div class="login-meta-data px-4 text-center">
<p class="mt-3 mb-0">By providing my phone number, I hereby agree the<a class="mx-1 stretched-link" href="page-privacy-policy.html">Term of Services</a>and <a class="mx-1 stretched-link" href="page-privacy-policy.html">Privacy Policy.</a></p>
</div>
</div>
</div>
</div>
</div>
<!-- All JavaScript Files-->
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/default/internet-status.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.counterup.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/default/dark-mode-switch.js"></script>
<script src="js/ion.rangeSlider.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/default/active.js"></script>
<script src="js/default/clipboard.js"></script>
<!-- PWA-->
<script src="js/pwa.js"></script>
</body>
</html>