-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer-order.php
347 lines (272 loc) · 12.9 KB
/
customer-order.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Universal : Your Furniture Shop
</title>
<?php require_once("Masterpages/Head.php") ?>
<script>
function getOrder(){
}
</script>
</head>
<body onload="getOrder()">
<!-- *** TOPBAR *** -->
<?php require_once("Masterpages/TopNav.php") ?>
<!-- *** TOP BAR END *** -->
<!-- *** NAVBAR *** -->
<div class="navbar navbar-default yamm" role="navigation" id="navbar">
<div class="container">
<?php require_once("Masterpages/NavbarHeader.php") ?>
<?php require_once("Masterpages/NavbarCallapse.php") ?>
<?php require_once("Masterpages/NavbarButtons.php") ?>
</div>
<!-- /.container -->
</div>
<!-- /#navbar -->
<!-- *** NAVBAR END *** -->
<div id="all">
<div id="content">
<div class="container">
<div class="col-md-12">
<ul class="breadcrumb">
<li><a href="index.html">Home</a>
</li>
<li><a href="customer-orders.html">My orders</a>
</li>
<li>Order # 1735</li>
</ul>
</div>
<div class="col-md-3">
<!-- *** CUSTOMER MENU *** -->
<div class="panel panel-default sidebar-menu">
<div class="panel-heading">
<h3 class="panel-title">Customer section</h3>
</div>
<div class="panel-body">
<ul class="nav nav-pills nav-stacked">
<li class="active">
<a href="customer-orders.php"><i class="fa fa-list"></i> My orders</a>
</li>
<!--
<li>
<a href="customer-wishlist.html"><i class="fa fa-heart"></i> My wishlist</a>
</li>
-->
<li>
<a href="customer-account.php"><i class="fa fa-user"></i> My account</a>
</li>
<li>
<a href="index.php"><i class="fa fa-sign-out"></i> Logout</a>
</li>
</ul>
</div>
</div>
<!-- /.col-md-3 -->
<!-- *** CUSTOMER MENU END *** -->
</div>
<div class="col-md-9" id="customer-order">
<div class="box">
<h1>Order #1735</h1>
<p class="lead">Order #1735 was placed on <strong>30/06/2018</strong> and is <strong>delivered</strong>.</p>
<p class="text-muted">If you have any questions, please feel free to <a href="contact.html">contact us</a>, our customer service center is working for you 24/7.</p>
<hr>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th colspan="2">Product</th>
<th>Quantity</th>
<th>Unit price</th>
<th>Discount</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="#">
<img src="img/detailsquare.jpg" alt="chair">
</a>
</td>
<td><a href="detail.html">chair</a>
</td>
<td>2</td>
<td>$123.00</td>
<td>$0.00</td>
<td>$246.00</td>
</tr>
<tr>
<td>
<a href="#">
<img src="img/basketsquare.jpg" alt="pot">
</a>
</td>
<td><a href="detail.html">Plant pot</a>
</td>
<td>1</td>
<td>$200.00</td>
<td>$0.00</td>
<td>$200.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="5" class="text-right">Order subtotal</th>
<th>$446.00</th>
</tr>
<tr>
<th colspan="5" class="text-right">Shipping and handling</th>
<th>$20.00</th>
</tr>
<tr>
<th colspan="5" class="text-right">GST</th>
<th>$46.60</th>
</tr>
<tr>
<th colspan="5" class="text-right">Total</th>
<th>$512.60</th>
</tr>
</tfoot>
</table>
</div>
<!-- /.table-responsive -->
<div class="row addresses">
<!-- <div class="col-md-6">
<h2>Invoice address</h2>
<p>John Brown
<br>13/25 New Avenue
<br>Highton
<br>Victoria 3216
<br>Australia</p>
</div> -->
<div class="col-md-11"> <!--changed by Shang from col-md-11 to col-md-6 -->
<h2>Shipping address</h2>
<p>John Brown
<br>13/25 New Avenue
<br>Highton
<br>Victoria 3216
<br>Australia</p>
</div>
</div>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /#content -->
<!-- *** FOOTER ***
_________________________________________________________ -->
<div id="footer" data-animate="fadeInUp">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<h4>Information</h4>
<ul>
<li><a href="aboutus.html">About us</a>
</li>
<li><a href="terms.html">Terms and conditions</a>
</li>
<li><a href="faq.html">FAQ</a>
</li>
<li><a href="contact.html">Contact us</a>
</li>
</ul>
<hr>
<h4>User section</h4>
<ul>
<li><a href="#" data-toggle="modal" data-target="#login-modal">Login</a>
</li>
<li><a href="register.html">Regiter</a>
</li>
</ul>
<hr class="hidden-md hidden-lg hidden-sm">
</div>
<!-- /.col-md-3 -->
<div class="col-md-3 col-sm-6">
<h4>Top categories</h4>
<h5>Furniture</h5>
<ul>
<li><a href="shop-furniture.html">Chairs</a>
</li>
<li><a href="shop-furniture.html">Beds</a>
</li>
<li><a href="shop-furniture.html">Tables</a>
</li>
<li><a href="shop-furniture.html">Storage</a>
</li>
</ul>
<h5>Accessories</h5>
<ul>
<li><a href="shop-accessories.html">Home Deco</a>
</li>
<li><a href="shop-accessories.html">Textiles & Rugs</a>
</li>
<li><a href="shop-accessories.html">Lighting</a>
</li>
<li><a href="shop-accessories.html">Plant pots & Stands</a>
</li>
</ul>
<hr class="hidden-md hidden-lg">
</div>
<!-- /.col-md-3 -->
<div class="col-md-3 col-sm-6">
<h4>Where to find us</h4>
<p><strong>Universal Ltd.</strong>
<br>500 Main Street
<br>Geelong
<br>Victoria 3200
<br>
<strong>Australia</strong>
</p>
<a href="contact.html">Go to contact page</a>
<hr class="hidden-md hidden-lg">
</div>
<!-- /.col-md-3 -->
<div class="col-md-3 col-sm-6">
<h4>Stay in touch</h4>
<p class="social">
<a href="#" class="facebook external" data-animate-hover="shake"><i class="fa fa-facebook"></i></a>
<a href="#" class="twitter external" data-animate-hover="shake"><i class="fa fa-twitter"></i></a>
<a href="#" class="instagram external" data-animate-hover="shake"><i class="fa fa-instagram"></i></a>
<a href="#" class="gplus external" data-animate-hover="shake"><i class="fa fa-google-plus"></i></a>
<a href="#" class="email external" data-animate-hover="shake"><i class="fa fa-envelope"></i></a>
</p>
</div>
<!-- /.col-md-3 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</div>
<!-- /#footer -->
<!-- *** FOOTER END *** -->
<!-- *** COPYRIGHT ***
_________________________________________________________ -->
<div id="copyright">
<div class="container">
<div class="col-md-6">
<p class="pull-left">© 2018 Universal Ltd.</p>
</div>
<div class="col-md-6">
<p class="pull-right">Template by <a href="https://bootstrapious.com/e-commerce-templates">Bootstrapious.com</a>
<!-- Not removing these links is part of the license conditions of the template. Thanks for understanding :) If you want to use the template without the attribution links, you can do so after supporting further themes development at https://bootstrapious.com/donate -->
</p>
</div>
</div>
</div>
<!-- *** COPYRIGHT END *** -->
</div>
<!-- /#all -->
<!-- *** SCRIPTS TO INCLUDE ***
_________________________________________________________ -->
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/bootstrap-hover-dropdown.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/front.js"></script>
</body>
</html>