-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.html
126 lines (102 loc) · 4.31 KB
/
payment.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<meta name="generator" content="">
<title>Finwallapp - Mobile HTML template</title>
<!-- manifest meta -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Favicons -->
<link rel="apple-touch-icon" href="img/favicon180.png" sizes="180x180">
<link rel="icon" href="img/favicon32.png" sizes="32x32" type="image/png">
<link rel="icon" href="img/favicon16.png" sizes="16x16" type="image/png">
<!-- Material icons-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<!-- swiper CSS -->
<link href="vendor/swiper/css/swiper.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet" id="style">
</head>
<body class="body-scroll d-flex flex-column h-100 menu-overlay">
<!-- screen loader -->
<div class="container-fluid h-100 loader-display">
<div class="row h-100">
<div class="align-self-center col">
<div class="logo-loading">
<div class="icon icon-100 mb-4 rounded-circle">
<img src="img/favicon144.png" alt="" class="w-100">
</div>
<h4 class="text-default">Finwallapp</h4>
<p class="text-secondary">Mobile HTML template</p>
<div class="loader-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</div>
</div>
<!-- Begin page content -->
<main class="flex-shrink-0 main">
<!-- Fixed navbar -->
<header class="header">
<div class="row">
<div class="col-auto px-0">
<button class="menu-btn btn btn-40 btn-link back-btn" type="button">
<span class="material-icons">keyboard_arrow_left</span>
</button>
</div>
<div class="text-left col align-self-center">
</div>
<div class="ml-auto col-auto">
<a href="profile.html" class="avatar avatar-30 shadow-sm rounded-circle ml-2">
<figure class="m-0 background">
<img src="img/user1.png" alt="">
</figure>
</a>
</div>
</div>
</header>
<!-- page content start -->
<div class="container mt-3 mb-4 text-center">
<h2 class="text-white">$ 98.98</h2>
<p class="text-white mb-4">Total Balance</p>
</div>
<div class="main-container">
<div class="container">
<div class="card">
<div class="card-body">
<div class="form-group float-label mb-0">
<input type="email" class="form-control" autofocus="">
<label class="form-control-label">PayPal email ID</label>
</div>
</div>
<div class="card-footer">
<a href="thank_you.html" class="btn btn-primary btn-block rounded">Pay Now</a>
</div>
</div>
</div>
</div>
</main>
<!-- Required jquery and libraries -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- cookie js -->
<script src="js/jquery.cookie.js"></script>
<!-- Swiper slider js-->
<script src="vendor/swiper/js/swiper.min.js"></script>
<!-- Customized jquery file -->
<script src="js/main.js"></script>
<script src="js/color-scheme-demo.js"></script>
<!-- page level custom script -->
<script src="js/app.js"></script>
</body>
</html>