-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
350 lines (331 loc) · 13.6 KB
/
checkout.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width", initial-scale="1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Checkout page</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/header.css">
<link rel="stylesheet" href="assets/css/checkout.css">
<link rel="stylesheet" href="assets/css/footer.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<!--top header -->
<header>
<div class="top-header">
<div class="container">
<div class="row">
<div class="col-md-6">
<img class="usa"src="assets/images/usa.png">
<select class="drop">
<option>USA</option>
<option>KOR</option>
<option>JAP</option>
</select>
<p class="phone"><a href="tel:+019841123456">01 9841123456</a></p>
</div>
<div class="col-md-6">
<ul class="">
<li><a href="#">Account</a></li>
<li><a href="https://saleenaprajapati.github.io/shopping12/product.html">Wish List </a></li>
<li><a href="https://saleenaprajapati.github.io/shopping12/shopping.html">Shopping</a></li>
<li><a href="https://saleenaprajapati.github.io/shopping12/cart.html">Cart</a></li>
<li><a href="https://saleenaprajapati.github.io/shopping12/checkout.html">Checkout</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- mid header -->
<div class="mid-header">
<nav class="navbar navbar-expand-lg navbar-light sticky-top">
<div class="container">
<a href="index.html">
<img src="assets/images/logo.png" height="30" alt="MDB Logo" loading="lazy" style="margin-top: -2px;">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Category</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Latest</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pages</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
<ul class="d-flex header-icon">
<input class="search" type="text" name="" placeholder="Search product">
<a class="search-btn but" href=""></a>
<li><a href="#" class="me-4"><i class="fa fa-search" aria-hidden="true"></i></a></li>
<li><a href="#" class="me-4"><i class="fa fa-heart-o" aria-hidden="true"></i></a></li>
<li><a href="#" class="me-4"> <i class="fa fa-user" aria-hidden="true"></i> </a></li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<div class="clearfix">...</div>
<!-- details -->
<section>
<div class="container my-4">
<div class="row">
<div class="col-6 whole">
<h2>Billing Details</h2>
<form>
<div class="row">
<div class="col-6">
<label class="form-label" for="firstname">First Name</label>
<input type="text" id="firstname" class="form-control">
</div>
<div class=" col-6">
<label class="form-label" for="lastname">Last Name</label>
<input type="text" id="lastname" class="form-control">
</div>
<div class="col-12">
<label class="form-label" for="username">Username</label>
<div class="input-group">
<span class="input-group-text">@</span>
<input type="text" id="username" class="form-control">
</div>
</div>
<div class="col-12">
<label class="form-label" for="email">Email Address
<span class="text-muted">Optional</span>
</label>
<input type="text" id="email" class="form-control">
</div>
<div class="col-12">
<label class="form-label" for="address">Address</label>
<input type="text" id="address" class="form-control">
</div>
<div class="col-6">
<label class="form-label" for="country">Country</label>
<select class="form-control" id="country">
<option>Choose</option>
<option>Nepal</option>
</select>
</div>
<div class="col-6">
<label class="form-label" for="state">State</label>
<select class="form-control" id="state">
<option>Choose</option>
<option>Thimi</option>
<option>Bhaktapur</option>
</select>
</div>
<h4>Select level of effective delivary </h4>
<div class="col-sm-6">
<i class="fa fa-home"></i>
<p>Home</p>
</div>
<div class="col-sm-6">
<i class="fa fa-home"></i>
<p>Office</p>
</div>
<h4>Accpeted Cards</h4>
<div class="form-check">
<i class="fa fa-cc-visa" style="color: navy;"></i>
<i class="fa fa-cc-amex" style="color: blue;"></i>
<i class="fa fa-cc-mastercard" style="color: orange;"></i>
<i class="fa fa-cc-discover" style="color: red;"></i>
</div>
<div class="col-6">
<label class="form-label" for="cardname">Card Name</label>
<input type="text" id="cardname" class="form-control">
</div>
<div class="col-6">
<label class="form-label" for="cardname">Card Number</label>
<input type="text" id="cardname" class="form-control placeholder:enter name">
</div>
<h4>Description</h4>
<textarea>Write</textarea>
</div>
<hr>
<button type="submit" class="btn btn-primary btn-block">Continue to Checkout</button>
</form>
</div>
<div class="col-6 tophead">
<h4 class="d-flex justify-content-between align-items-center">
<span class="text-muted">Your card</span>
<span class="badge bg-secondary rounded-pill">3</span>
</h4>
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between">
<div>
<h6>Product name</h6>
<span class="text-muted brief">Brief Description</span>
</div>
<span class="text-muted">Rs600</span>
</li>
<li class="list-group-item d-flex justify-content-between">
<div>
<h6>Second Product</h6>
<span class="text-muted">Brief Description</span>
</div>
<span class="text-muted">Rs600</span>
</li>
<li class="list-group-item d-flex justify-content-between">
<div>
<h6> Third Product</h6>
<span class="text-muted">Brief Description</span>
</div>
<span class="text-muted">Rs500</span>
</li>
<li class="list-group-item d-flex justify-content-between">
<div>
<h6> Total(Rs)</h6>
</div>
<span class="text-muted">Rs1700</span>
</li>
</ul>
<div class="payment_item">
<div class="radion_btn">
<input type="radio" id="f-option5" name="selector" />
<label for="f-option5">Check payments</label>
<div class="check"></div>
</div>
<p class="paragraph">
Please send a check to Store Name, Store Street, Store Town,
Store State / County, Store Postcode.
</p>
</div>
<div class="payment_item active">
<div class="radion_btn">
<input type="radio" id="f-option6" name="selector" />
<label for="f-option6">Paypal </label>
<img src="img/product/single-product/card.jpg" alt="" data-pagespeed-url-hash="2262953204" onload="pagespeed.CriticalImages.checkImageForCriticality(this);" />
<div class="check"></div>
</div>
<p class="paragraph">
Please send a check to Store Name, Store Street, Store Town,
Store State / County, Store Postcode.
</p>
</div>
<div class="creat_account">
<input type="checkbox" id="f-option4" name="selector" />
<label for="f-option4">I’ve read and accept the terms & conditions</label>
</div>
<a class="btn_4" href="#">Proceed to Paypal</a>
</div>
</section>
<!-- footer -->
<footer class="text-center text-lg-start text-muted footer">
<section class="">
<div class="container text-center text-md-start mt-5">
<div class="row mt-3">
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<h6 class="text-uppercase fw-bold mb-4">
<img src="assets/images/logo.png" width="50%" height="50" alt="MDB Logo" loading="lazy" style="margin-top: -16px; margin-bottom: -7px; margin-left: 0;"
/>
</h6>
<p>
Here you can use rows and columns to organize your footer content. Lorem ipsum
dolor sit amet, consectetur adipisicing elit.
</p>
</div>
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4 set">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Quick Link
</h6>
<p>
<a href="#!" class="text-reset">About</a>
</p>
<p>
<a href="#!" class="text-reset">Offer and Discount</a>
</p>
<p>
<a href="#!" class="text-reset">Get Coupon</a>
</p>
<p>
<a href="#!" class="text-reset">Contact us</a>
</p>
</div>
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4 set">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
New Product
</h6>
<p>
<a href="#!" class="text-reset">Woman cloth</a>
</p>
<p>
<a href="#!" class="text-reset">Fashion Accessories</a>
</p>
<p>
<a href="#!" class="text-reset">Man Accessories</a>
</p>
<p>
<a href="#!" class="text-reset">Rubber made Toys</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4 set">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Service
</h6>
<p>
<a href="#!" class="text-reset">Frequently Asked Question</a>
</p>
<p>
<a href="#!" class="text-reset">Terms & Condition</a>
</p>
<p>
<a href="#!" class="text-reset">Privacy Policy</a>
</p>
<p>
<a href="#!" class="text-reset">Report And Payment Issue</a>
</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
</footer>
<!-- Footer -->
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-6 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-muted text-decoration-none lh-1">
<svg class="bi" width="30" height="24"><use xlink:href="#bootstrap"/></svg>
</a>
<span class="text-muted">Copyright All rights reserved | This template is made with <i class="ti-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a></span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-youtube-play" aria-hidden="true"></i></a></li>
</ul>
</ul>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="assets/js/main.js"></script>
</body>
</html>