This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwishlist.php
246 lines (237 loc) · 8.49 KB
/
wishlist.php
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
<!doctype html>
<html class="no-js" lang="en">
<?php
include_once 'elements\head.php';
include_once 'config\conn.php';
?>
<body>
<!-- WRAPPER START -->
<div class="wrapper bg-dark-white">
<?php include_once 'elements\header.php' ?>
<!-- HEADING-BANNER START -->
<div class="heading-banner-area overlay-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading-banner">
<div class="heading-banner-title">
<h2>Wishlist</h2>
</div>
<div class="breadcumbs pb-15">
<ul>
<li><a href="index.php">Home</a></li>
<li>Wishlist</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- HEADING-BANNER END -->
<!-- WISHLIST-AREA START -->
<div class="shopping-cart-area pt-80 pb-80">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="shopping-cart">
<!-- Nav tabs -->
<ul class="cart-page-menu nav row clearfix mb-30">
<li><a href="cart.php">shopping cart</a></li>
<li><a class="active" href="wishlist.php">wishlist</a></li>
<li><a href="checkout.php">check out</a></li>
<li><a href="order.php">order complete</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<!-- wishlist start -->
<div class="tab-pane active" id="wishlist">
<form action="#">
<div class="shop-cart-table">
<div class="table-content table-responsive">
<table>
<thead>
<tr>
<th class="product-thumbnail">Product</th>
<th class="product-price">Price</th>
<th class="product-stock">stock status</th>
<th class="product-add-cart">Add to cart</th>
<th class="product-remove">Remove</th>
</tr>
</thead>
<tbody>
<tr>
<td class="product-thumbnail text-left">
<!-- Single-product start -->
<div class="single-product">
<div class="product-img">
<a href="single-product.html"><img
src="img/product/2.jpg" alt="" /></a>
</div>
<div class="product-info">
<h4 class="post-title"><a
class="text-light-black" href="#">dummy
product name</a></h4>
<p class="mb-0">Color : Black</p>
<p class="mb-0">Size : SL</p>
</div>
</div>
<!-- Single-product end -->
</td>
<td class="product-price">$56.00</td>
<td class="product-stock">in stock</td>
<td class="product-add-cart">
<a class="text-light-black" href="#"><i
class="zmdi zmdi-shopping-cart-plus"></i></a>
</td>
<td class="product-remove">
<a href="#"><i class="zmdi zmdi-close"></i></a>
</td>
</tr>
<tr>
<td class="product-thumbnail text-left">
<!-- Single-product start -->
<div class="single-product">
<div class="product-img">
<a href="single-product.html"><img
src="img/product/12.jpg" alt="" /></a>
</div>
<div class="product-info">
<h4 class="post-title"><a
class="text-light-black" href="#">dummy
product name</a></h4>
<p class="mb-0">Color : Black</p>
<p class="mb-0">Size : SL</p>
</div>
</div>
<!-- Single-product end -->
</td>
<td class="product-price">$56.00</td>
<td class="product-stock">in stock</td>
<td class="product-add-cart">
<a class="text-light-black" href="#"><i
class="zmdi zmdi-shopping-cart-plus"></i></a>
</td>
<td class="product-remove">
<a href="#"><i class="zmdi zmdi-close"></i></a>
</td>
</tr>
<tr>
<td class="product-thumbnail text-left">
<!-- Single-product start -->
<div class="single-product">
<div class="product-img">
<a href="single-product.html"><img
src="img/product/6.jpg" alt="" /></a>
</div>
<div class="product-info">
<h4 class="post-title"><a
class="text-light-black" href="#">dummy
product name</a></h4>
<p class="mb-0">Color : Black</p>
<p class="mb-0">Size : SL</p>
</div>
</div>
<!-- Single-product end -->
</td>
<td class="product-price">$56.00</td>
<td class="product-stock">in stock</td>
<td class="product-add-cart">
<a class="text-light-black" href="#"><i
class="zmdi zmdi-shopping-cart-plus"></i></a>
</td>
<td class="product-remove">
<a href="#"><i class="zmdi zmdi-close"></i></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</form>
</div>
<!-- wishlist end -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- WISHLIST-AREA END -->
<!-- FOOTER START -->
<?php include_once 'elements\footer.php' ?>
<!-- FOOTER END -->
<!-- QUICKVIEW PRODUCT -->
<div id="quickview-wrapper">
<!-- Modal -->
<div class="modal fade" id="productModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div class="modal-product">
<div class="product-images">
<div class="main-image images">
<img alt="#" src="img/product/quickview-photo.jpg" />
</div>
</div><!-- .product-images -->
<div class="product-info">
<h1>Aenean eu tristique</h1>
<div class="price-box-3">
<hr />
<div class="s-price-box">
<span class="new-price">$160.00</span>
<span class="old-price">$190.00</span>
</div>
<hr />
</div>
<a href="shop.html" class="see-all">See all features</a>
<div class="quick-add-to-cart">
<form method="post" class="cart">
<div class="numbers-row">
<input type="number" id="french-hens" value="3" min="1">
</div>
<button class="single_add_to_cart_button" type="submit">Add to cart</button>
</form>
</div>
<div class="quick-desc">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec
est tristique auctor. Donec non est at libero.
</div>
<div class="social-sharing">
<div class="widget widget_socialsharing_widget">
<h3 class="widget-title-modal">Share this product</h3>
<ul class="social-icons">
<li><a target="_blank" title="Google +" href="#"
class="gplus social-icon"><i
class="zmdi zmdi-google-plus"></i></a></li>
<li><a target="_blank" title="Twitter" href="#"
class="twitter social-icon"><i
class="zmdi zmdi-twitter"></i></a></li>
<li><a target="_blank" title="Facebook" href="#"
class="facebook social-icon"><i
class="zmdi zmdi-facebook"></i></a></li>
<li><a target="_blank" title="LinkedIn" href="#"
class="linkedin social-icon"><i
class="zmdi zmdi-linkedin"></i></a></li>
</ul>
</div>
</div>
</div><!-- .product-info -->
</div><!-- .modal-product -->
</div><!-- .modal-body -->
</div><!-- .modal-content -->
</div><!-- .modal-dialog -->
</div>
<!-- END Modal -->
</div>
<!-- END QUICKVIEW PRODUCT -->
</div>
<!-- WRAPPER END -->
<!-- all js here -->
<?php include_once 'elements\js.php' ?>
</body>
</html>