forked from Anushkabh/krishiconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wishlist.html
472 lines (404 loc) · 18 KB
/
wishlist.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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
<!DOCTYPE html>
<html>
<head>
<title>KrishiConnect | Wishlist</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<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">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<script src="https://unpkg.com/scrollreveal"></script>
<link href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="darkmode.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
</head>
<style>
.wishlist-container {
display: flex;
justify-content: center;
}
.wishlist {
background-color: #132e40;
color: white;
padding: 20px;
border-radius: 10px;
margin: 20px;
}
.wishlist-text {
font-size: 24px;
margin-bottom: 10px;
}
.wishlist-items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 20px;
}
.wishlist-item {
margin-bottom: 10px;
}
.item-name {
font-weight: bold;
width: 200px;
display: inline-block;
margin-right: 20px;
}
.item-price {
font-weight: bold;
color: #ffffff;
width: 100px;
display: inline-block;
text-align: right;
}
.wishlist-btn {
border: none;
padding: 10px 20px;
margin-top: 10px;
border-radius: 5px;
cursor: pointer;
background-color: #ffffff;
color: white;
}
.wishlist-btn:hover {
transform: scale(1.2);
}
/* For static navbar */
.container {
max-width: 100%;
padding: 0 15px;
margin: 0 auto;
align-items: center;
}
.navbar {
background-color: transparent;
position: static;
width: 100%;
}
.navbar-brand {
display: flex;
align-items: center;
}
.navbar-brand img {
max-height: 50px;
margin-right: 10px;
}
.container h1{
color:black;
}
.container p{
color:black;
font-size: bolder;
}
.footer-navbar{
color: black;
}
@media screen and (max-width:768px){
.navbar-collapse{
position: absolute;
right:0;
top: 95px;
text-align: center;
background-color: #132e40 ;
width: 186px;
z-index: 1000;
}
.navbar-nav li{
color: black;
}
.toggle{
position: relative;
left: 101px;
}
}
@media (max-width: 370px) {
.navbar-toggler {
right: 10px;
}
.toggle {
right: 10px;
top: 10px;
}
.navbar-collapse {
top: 50px;
}
}
</style>
<body class="light">
<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">
<img src="assets/img/logo/logo3.png" alt="Logo" height="80px" style="margin-left: 2rem;"> <!-- Adjust logo size if necessary -->
</a>
<a href="index.html" class="navbar-brand">
<div style="flex-direction: row; display: flex; align-items: center;">
<!-- <img id="your-image" src="assets/img/logo/krishiconnect-high-resolution-logo_black.png" > -->
<!-- <h3 >कृषिCONNECT</h3> -->
</div>
</a>
<!-- Toggle Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarcollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarcollapse">
<!-- Navbar Menu -->
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link"><i class="ri-home-fill"></i> Home</a>
</li>
<li class="nav-item">
<a href="shop(1).html" class="nav-link"><i class="ri-shopping-bag-fill"></i> Shop</a>
</li>
<li class="nav-item">
<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 href="index.html" class="nav-link"><i class="ri-home-fill"></i> Home
</a> -->
<!-- </li> -->
<!-- <li class="nav-item">
<a href="shop(1).html" class="nav-link"><i class="ri-shopping-bag-fill"></i> Shop</a>
</li>
<li class="nav-item">
<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 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">
<a href="cart(1).html" class="nav-link"><i class="ri-shopping-cart-2-fill"></i> My Cart</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('https://w0.peakpx.com/wallpaper/505/685/HD-wallpaper-still-life-vegetables-basket-fresh-fruits.jpg');">
>
<div class="container">
<img src="assets/img/logo/log.png" alt="" height="300" id="image">
</a>
<h1 class="pt-5" id="y" style="color: black;">
Your Wishlist
</h1>
<p class="lead" id="s">
Save time and leave the groceries to us.
</p>
</div>
</div>
</div>
<div class="wishlist-container" id="wishlist-container">
<div class="wishlist" style="background-color: #132e40;">
<h1 class="wishlist-text" style="color: white;">Wishlist</h1>
<div id="wishlist-items" class="wishlist-items"></div>
<button class="wishlist-btn" onclick="emptyWishlist()" style="border-radius: 3px; color: rgb(7, 7, 7);">Empty Wishlist</button>
<button onclick="window.location.href='cart(1).html'" class="wishlist-btn" style="border-radius: 3px; color: rgb(9, 9, 9);">Go to Cart</button>
</div>
</div>
<footer class="text-center text-lg-start bg-body-tertiary text-muted" style="padding: 0px;">
<!-- Section: Links -->
<section class="" style="padding: 0px;">
<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="navbar-brand mr-auto">
<img src="assets/img/logo/logo3.png" width="70px" style="display: inline-block; vertical-align: middle;margin-left: 150px; " >
</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 footer-navbar">
Products
</h6>
<p style="font-weight: bold;">
<a href="shop(1).html" class="text-reset footer-navbar">VEGETABLES</a>
</p>
<p style="font-weight: bold;">
<a href="shop(1).html" class="text-reset footer-navbar">FRUITS</a>
</p>
<p style="font-weight: bold;">
<a href="shop(1).html" class="text-reset footer-navbar">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 footer-navbar">
Useful links
</h6>
<p>
<a href="shop(1).html" class="text-reset footer-navbar">HERBS</a>
</p>
<p>
<a href="shop(1).html" class="text-reset footer-navbar">PULSES</a>
</p>
<p>
<a href="shop(1).html" class="text-reset footer-navbar">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 footer-navbar">Contact</h6>
<p><i class="fas fa-home me-3"></i> <bold>New York, NY 10012, US</bold></p>
<p>
<i class="fas fa-envelope me-3"></i>
<bold>
krishiconnect@gmail.com</bold>
</p>
<p><i class="fas fa-phone me-3"></i> <bold>082723 67238</bold></p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Section: Social media -->
<!-- Left -->
<div class="me-5 d-none d-lg-block font footer-navbar">
<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: Links -->
<!-- Copyright -->
<div class="text-center p-4 footer-navbar" style="background-color: rgba(0, 0, 0, 0.05);">
© <span id="copyright-year" class="footer-navbar"></span><bold> Copyright: </bold>
<a class="text-reset fw-bold footer-navbar" href="https://mdbootstrap.com/"> <bold> कृषिCONNECT | Fresh From Farm. All rights reserved.</bold></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="wishlist.js"></script>
<script src="cart.js"></script>
<script src="shop.js"></script>
<script>
ScrollReveal({
//reset: true ,
distance : '60px' ,
duration:2500,
delay:400
});
ScrollReveal().reveal('#image,#y,#s', { delay: 500 , origin:'top' });
ScrollReveal().reveal('#wishlist-container', { delay: 600 , origin:'top' });
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>
<script src="./darkmode.js"></script>
</body>
</html>