-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-account.php
128 lines (117 loc) · 2.25 KB
/
my-account.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
<?php include('inc/header.php')?>
<?php include('inc/nav.php')?>
<div class="close-btn fa fa-times"></div>
<!-- SHOP CONTENT -->
<section id="content">
<div class="content-blog content-account">
<div class="container">
<div class="row">
<div class="page_header text-center">
<h2>My Account</h2>
</div>
<div class="col-md-12">
<h3>Recent Orders</h3>
<br>
<table class="cart-table account-table table table-bordered">
<thead>
<tr>
<th>Order</th>
<th>Date</th>
<th>Status</th>
<th>Total</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
900
</td>
<td>
June 15, 2015
</td>
<td>
Delivered
</td>
<td>
£173 for 4 items
</td>
<td>
<a href="#">View</a>
</td>
</tr>
<tr>
<td>
873
</td>
<td>
June 02, 2015
</td>
<td>
Delivered
</td>
<td>
£55 for 2 items
</td>
<td>
<a href="#">View</a>
</td>
</tr>
<tr>
<td>
629
</td>
<td>
March 23, 2015
</td>
<td>
Delivered
</td>
<td>
£599 for 14 items
</td>
<td>
<a href="#">View</a>
</td>
</tr>
</tbody>
</table>
<br>
<br>
<br>
<div class="ma-address">
<h3>My Addresses</h3>
<p>The following addresses will be used on the checkout page by default.</p>
<div class="row">
<div class="col-md-6">
<h4>Billing Address <a href="#">Edit</a></h4>
<p>
Ranveer Singh<br>
spyropress<br>
karachi<br>
karachi<br>
TR05<br>
342343<br>
Swaziland
</p>
</div>
<div class="col-md-6">
<h4>Shipping Address <a href="#">Edit</a></h4>
<p>
Ranveer Singh<br>
spyropress<br>
karachi<br>
karachi<br>
TR05<br>
342343<br>
Swaziland
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php include('inc/footer.php')?>