-
Notifications
You must be signed in to change notification settings - Fork 0
/
addcard.html
177 lines (155 loc) · 7.42 KB
/
addcard.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!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">
<a class="navbar-brand" href="#">
<h5 class="mb-0">Add Card</h5>
</a>
</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="main-container">
<div class="container">
<div class="alert alert-danger">
<b>Ooops!</b> There is some error in data you have entered. Please enter correct details.
</div>
<div class="card">
<div class="card-header">
<h6 class="subtitle mb-0">
<div class="avatar avatar-40 bg-primary-light text-primary rounded mr-2"><span class="material-icons vm">credit_card</span></div>
Add Credit/Debit card
</h6>
</div>
<div class="card-body">
<div class="form-group float-label active">
<input type="text" class="form-control" value="212154525244">
<label class="form-control-label">Card Number</label>
<p class="form-text text-secondary text-right">Visa Debit card</p>
</div>
<div class="form-group float-label">
<input type="text" class="form-control is-invalid" autofocus>
<label class="form-control-label">Card Holder Name</label>
<div id="validationServer03Feedback" class="invalid-feedback">
Please provide a valid card holder name.
</div>
</div>
<div class="form-group float-label active">
<div class="row">
<div class="col">
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
<option>11</option>
<option>12</option>
</select>
</div>
<div class="col">
<select class="form-control">
<option>2021</option>
<option>2022</option>
<option>2023</option>
<option>2024</option>
<option>2025</option>
<option>2026</option>
<option>2027</option>
<option>2028</option>
<option>2029</option>
<option>2030</option>
<option>2031</option>
<option>2032</option>
</select>
</div>
</div>
<label class="form-control-label">Expiry month and year</label>
</div>
</div>
<div class="card-footer">
<button class="btn btn-block btn-default rounded">Add Card</button>
</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>