-
Notifications
You must be signed in to change notification settings - Fork 0
/
app-sms-verification.html
79 lines (65 loc) · 2.64 KB
/
app-sms-verification.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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#000000">
<title>Finapp</title>
<meta name="description" content="Finapp HTML Mobile Template">
<meta name="keywords" content="bootstrap, wallet, banking, fintech mobile template, cordova, phonegap, mobile, html, responsive" />
<link rel="icon" type="image/png" href="assets/img/favicon.png" sizes="32x32">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/icon/192x192.png">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="manifest" href="__manifest.json">
</head>
<body>
<!-- loader -->
<div id="loader">
<img src="assets/img/loading-icon.png" alt="icon" class="loading-icon">
</div>
<!-- * loader -->
<!-- App Header -->
<div class="appHeader bg-primary text-light">
<div class="left">
<a href="#" class="headerButton goBack">
<ion-icon name="chevron-back-outline"></ion-icon>
</a>
</div>
<div class="pageTitle"></div>
<div class="right">
</div>
</div>
<!-- * App Header -->
<!-- App Capsule -->
<div id="appCapsule">
<div class="section mt-2 text-center">
<h1>Enter SMS Code</h1>
<h4>Enter 4 digit sms verification code</h4>
</div>
<div class="section mb-5 p-2">
<form action="index.html">
<div class="form-group basic">
<input type="text" class="form-control verification-input" id="smscode" placeholder="••••"
maxlength="4">
</div>
<div class="form-button-group transparent">
<button type="submit" class="btn btn-primary btn-block btn-lg">Verify</button>
</div>
</form>
</div>
</div>
<!-- * App Capsule -->
<!-- ========= JS Files ========= -->
<!-- Bootstrap -->
<script src="assets/js/lib/bootstrap.bundle.min.js"></script>
<!-- Ionicons -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<!-- Splide -->
<script src="assets/js/plugins/splide/splide.min.js"></script>
<!-- Base Js File -->
<script src="assets/js/base.js"></script>
</body>
</html>