forked from Anushkabh/krishiconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout(1).html
370 lines (343 loc) · 17.5 KB
/
checkout(1).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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<!DOCTYPE html>
<html>
<head>
<title>Freshcery | Groceries Organic Store</title>
<link rel="icon" type="image/png" href="/assets/img/logo/log.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="assets/fonts/sb-bistro/sb-bistro.css" rel="stylesheet" type="text/css">
<link href="assets/fonts/font-awesome/font-awesome.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" media="all" href="assets/packages/bootstrap/bootstrap.css">
<link rel="stylesheet" type="text/css" media="all" href="assets/packages/o2system-ui/o2system-ui.css">
<link rel="stylesheet" type="text/css" media="all" href="assets/packages/owl-carousel/owl-carousel.css">
<link rel="stylesheet" type="text/css" media="all" href="assets/packages/cloudzoom/cloudzoom.css">
<link rel="stylesheet" type="text/css" media="all" href="assets/packages/thumbelina/thumbelina.css">
<link rel="stylesheet" type="text/css" media="all" href="assets/packages/bootstrap-touchspin/bootstrap-touchspin.css">
<link rel="stylesheet" type="text/css" media="all" href="assets/css/theme.css">
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body>
<div class="page-header">
<!--=============== Navbar ===============-->
<nav class="navbar fixed-top navbar-expand-md navbar-dark bg-dark" id="page-navigation">
<div class="container">
<!-- Navbar Brand -->
<a href="index.html" class="navbar-brand mr-auto">
<img src="assets/img/logo/logo3.png" width="70px" style="display: inline-block; vertical-align: middle;margin-left: 0px; " >
</a>
<!-- Toggle Button -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarcollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarcollapse">
<!-- Navbar Menu -->
<ul class="navbar-nav">
<li class="nav-item" style="border: 2px solid white" id="nav-link1">
<a href="login.html" class="nav-link"><i class="ri-user-3-fill"></i> Are You A Seller?</a>
</li>
<li class="nav-item" id="nav-link2">
<a href="shop(1).html" class="nav-link"><i class="ri-shopping-bag-fill"></i> Shop</a>
</li>
<li class="nav-item" id="nav-link3">
<a href="transaction.html" class="nav-link"><i class="ri-bank-card-fill"></i> Transactions</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" id="wishlistDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ri-seedling-fill"></i>
Wishlist <span id="wishlistCount" class="wishlist-count">0</span>
</a>
<div class="dropdown-menu" aria-labelledby="wishlistDropdown" id="wishlistDropdownContent">
<!-- Wishlist items will be dynamically added here -->
</div>
</li>
<li class="nav-item" id="nav-link5">
<a href="cart(1).html" class="nav-link"><i class="ri-shopping-cart-2-fill"></i> My Cart</a>
</li>
<li class="nav-item">
<a href="contact(1).html" class="nav-link"><i class="ri-user-star-fill"></i>Contact</a>
</li>
</ul>
<input type="checkbox" id="toggle">
<label class="toggle" for="toggle">
<i class="bx bxs-sun"></i>
<i class="bx bx-moon"></i>
<span class="ball"></span>
</label>
</div>
</div>
</nav>
</div>
<div id="page-content" class="page-content">
<div class="banner">
<div class="jumbotron jumbotron-bg text-center rounded-0" style="background-image: url('assets/img/bg.jpg');">
<div class="container">
<h1 class="pt-5" id="h1">
Checkout
</h1>
<p class="lead" id="h2">
Save time and leave the groceries to us.
</p>
</div>
</div>
</div>
<section id="checkout">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-7">
<h5 class="mb-3" id="h3">BILLING DETAILS</h5>
<!-- Bill Detail of the Page -->
<form action="#" class="bill-detail">
<fieldset>
<div class="form-group row">
<div class="col">
<input class="form-control" placeholder="Name" type="text" id="i1">
</div>
<div class="col">
<input class="form-control" placeholder="Last Name" type="text" id="i2">
</div>
</div>
<div class="form-group">
<input class="form-control" placeholder="Company Name" type="text" id="i3">
</div>
<div class="form-group">
<textarea class="form-control" placeholder="Address" id="i4"></textarea>
</div>
<div class="form-group">
<input class="form-control" placeholder="Town / City" type="text" id="i5">
</div>
<div class="form-group">
<input class="form-control" placeholder="State / Country" type="text" id="i6">
</div>
<div class="form-group">
<input class="form-control" placeholder="Postcode / Zip" type="text" id="i7">
</div>
<div class="form-group row">
<div class="col">
<input class="form-control" placeholder="Email Address" type="email" id="i8">
</div>
<div class="col">
<input class="form-control" placeholder="Phone Number" type="tel" id="i9">
</div>
</div>
<div class="form-group" id="i10">
<input type="checkbox"> Ship to a different address?
</div>
<div class="form-group">
<textarea class="form-control" placeholder="Order Notes" id="i11"></textarea>
</div>
</fieldset>
</form>
<!-- Bill Detail of the Page end -->
</div>
<div class="col-xs-12 col-sm-5">
<div class="holder">
<h5 class="mb-3" id="h5">YOUR ORDER</h5>
<div id="order-items"></div>
<h5 class="mb-3" id="h5">PAYMENT METHODS</h5>
<div class="form-check-inline" id="i12">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1" checked>
Direct Bank Transfer
</label>
</div>
<div class="form-check-inline" id="i13">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios2" value="option2">
Credit Card
</label>
</div>
</div>
<p class="text-right mt-3" id="i14">
<input checked="" type="checkbox"> I’ve read & accept the <a href="#">terms & conditions</a>
</p>
<a href="#" class="btn btn-primary float-right" id="i15">PROCEED TO CHECKOUT <i class="fa fa-check"></i></a>
<div class="clearfix">
</div>
</div>
</div>
</section>
</div>
<footer class="text-center text-lg-start bg-body-tertiary text-muted">
<!-- Section: Social media -->
<section class="d-flex justify-content-center justify-content-lg-between p-4 border-bottom">
<!-- Left -->
<div class="me-5 d-none d-lg-block font">
<span style="font-weight: bold;">Get connected with us on social networks:</span>
</div>
<!-- Left -->
<!-- Right -->
<div class="">
<!-- Facebook -->
<a
data-mdb-ripple-init
class="btn text-white btn-floating m-1"
style="background-color: #3b5998;"
href="#!"
role="button"
><i class="fab fa-facebook-f"></i
></a>
<!-- Twitter -->
<a
data-mdb-ripple-init
class="btn text-white btn-floating m-1"
style="background-color: #55acee;"
href="#!"
role="button"
><i class="fab fa-twitter"></i
></a>
<!-- Google -->
<a
data-mdb-ripple-init
class="btn text-white btn-floating m-1"
style="background-color: #dd4b39;"
href="#!"
role="button"
><i class="fab fa-google"></i
></a>
<!-- Instagram -->
<a
data-mdb-ripple-init
class="btn text-white btn-floating m-1"
style="background-color: #ac2bac;"
href="#!"
role="button"
><i class="fab fa-instagram"></i
></a>
<!-- Linkedin -->
<a
data-mdb-ripple-init
class="btn text-white btn-floating m-1"
style="background-color: #0082ca;"
href="#!"
role="button"
><i class="fab fa-linkedin-in"></i
></a>
<!-- Github -->
<a
data-mdb-ripple-init
class="btn text-white btn-floating m-1"
style="background-color: #333333;"
href="#!"
role="button"
><i class="fab fa-github"></i
></a>
</div>
<!-- Right -->
</section>
<!-- Section: Social media -->
<!-- Section: Links -->
<section class="">
<div class="container text-center text-md-start mt-5">
<!-- Grid row -->
<div class="row mt-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<!-- Content -->
<h6 class="text-uppercase fw-bold mb-4">
<a href="index.html" class=" mr-auto">
<img src="assets/img/logo/logo3.png" width="70px" style="display: inline-block; vertical-align: middle;margin-left: 0px; " >
</a>कृषिCONNECT
</h6>
<p>
कृषिCONNECT is an online B2C platform to bring fresh organic produce from farmers, straight to your dining tables. We aim to remove unnecessary middlemen and help out local farmers by getting them the pay they truly deserve.
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4 ">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Products
</h6>
<p style="font-weight: bold;">
<a href="shop(1).html" class="text-reset">VEGETABLES</a>
</p>
<p style="font-weight: bold;">
<a href="shop(1).html" class="text-reset">FRUITS</a>
</p>
<p style="font-weight: bold;">
<a href="shop(1).html" class="text-reset">OIL SEEDS</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Useful links
</h6>
<p>
<a href="shop(1).html" class="text-reset">HERBS</a>
</p>
<p>
<a href="shop(1).html" class="text-reset">PULSES</a>
</p>
<p>
<a href="shop(1).html" class="text-reset">MISCELLANOUS</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">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">Contact</h6>
<p><i class="fas fa-home me-3"></i> New York, NY 10012, US</p>
<p>
<i class="fas fa-envelope me-3"></i>
krishiconnect@gmail.com
</p>
<p><i class="fas fa-phone me-3"></i> 082723 67238</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
<!-- Section: Links -->
<!-- Copyright -->
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.05);">
© <span id="copyright-year"></span> Copyright:
<a class="text-reset fw-bold" href="https://mdbootstrap.com/"> कृषिCONNECT | Fresh From Farm. All rights reserved.</a>
</div>
<!-- Copyright -->
</footer>
<script>document.getElementById("copyright-year").textContent = new Date().getFullYear();</script>
<script type="text/javascript" src="assets/js/jquery.js"></script>
<script type="text/javascript" src="assets/js/jquery-migrate.js"></script>
<script type="text/javascript" src="assets/packages/bootstrap/libraries/popper.js"></script>
<script type="text/javascript" src="assets/packages/bootstrap/bootstrap.js"></script>
<script type="text/javascript" src="assets/packages/o2system-ui/o2system-ui.js"></script>
<script type="text/javascript" src="assets/packages/owl-carousel/owl-carousel.js"></script>
<script type="text/javascript" src="assets/packages/cloudzoom/cloudzoom.js"></script>
<script type="text/javascript" src="assets/packages/thumbelina/thumbelina.js"></script>
<script type="text/javascript" src="assets/packages/bootstrap-touchspin/bootstrap-touchspin.js"></script>
<script type="text/javascript" src="assets/js/theme.js"></script>
<script src="checkout.js"></script>
<script>
ScrollReveal({
//reset: true ,
distance : '60px' ,
duration:2500,
delay:400
});
ScrollReveal().reveal('#n1,#n2,#n3', { delay: 300 , origin:'top' });
ScrollReveal().reveal('#h1,#h2', { delay: 500 , origin:'top',interval:'100' });
ScrollReveal().reveal('#h3', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#h5', { delay: 700 , origin:'right' });
ScrollReveal().reveal('#i1,#i3,#i4,#i5,#i6', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#i7,#i8', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#i2,#i9', { delay: 700 , origin:'right'});
ScrollReveal().reveal('#i10', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#11', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#i12', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#i13', { delay: 700 , origin:'rightt' });
ScrollReveal().reveal('.text-right', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#15', { delay: 700 , origin:'left' });
ScrollReveal().reveal('#container', { delay: 700 , origin:'bottom' });
ScrollReveal().reveal('#col-md-3,#col-md-3l', { delay: 500 , origin:'left'});
ScrollReveal().reveal('#col-md,#col-md-3m', { delay: 500 , origin:'right'});
ScrollReveal().reveal('#copyright', { delay: 500 , origin:'bottom'});
</script>
</body>
</html>