-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-account.php
250 lines (222 loc) · 13.2 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
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Yoginee - Account and dashboad</title>
<meta name="robots" content="noindex, follow" />
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.ico">
<script src="https://kit.fontawesome.com/8f7c5a9c29.js" crossorigin="anonymous"></script>
<!-- CSS
============================================ -->
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,900" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Pe-icon-7-stroke CSS -->
<!-- <link rel="stylesheet" href="css/pe-icon-7-stroke.css"> -->
<link rel="stylesheet" href="https://template.hasthemes.com/corano/corano/assets/css/vendor/pe-icon-7-stroke.css">
<!-- Font-awesome CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Slick slider css -->
<link rel="stylesheet" href="css/plugins/slick.min.css">
<!-- animate css -->
<link rel="stylesheet" href="css/plugins/animate.css">
<!-- Nice Select css -->
<link rel="stylesheet" href="css/plugins/nice-select.css">
<!-- jquery UI css -->
<link rel="stylesheet" href="css/plugins/jqueryui.min.css">
<!-- main style css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<?php
include "component/_navbar.php";
?>
<main>
<!-- breadcrumb area start -->
<div class="breadcrumb-area">
<div class="container">
<div class="row">
<div class="col-12">
<div class="breadcrumb-wrap">
<nav aria-label="breadcrumb">
<ul class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html"><i class="fa fa-home"></i></a></li>
<li class="breadcrumb-item active" aria-current="page">my-account</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
<!-- breadcrumb area end -->
<!-- my account wrapper start -->
<div class="my-account-wrapper section-padding">
<div class="container">
<div class="section-bg-color">
<div class="row">
<div class="col-lg-12">
<!-- My Account Page Start -->
<div class="myaccount-page-wrapper">
<!-- My Account Tab Menu Start -->
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="myaccount-tab-menu nav" role="tablist">
<a href="#dashboad" class="active" data-bs-toggle="tab"><i class="fa fa-dashboard"></i>
Dashboard</a>
<a href="#orders" data-bs-toggle="tab"><i class="fa fa-cart-arrow-down"></i>
Orders</a>
<a href="#payment-method" data-bs-toggle="tab"><i class="fa fa-credit-card"></i>
Payment
Method</a>
<a href="#address-edit" data-bs-toggle="tab"><i class="fa fa-map-marker"></i>
address</a>
<a href="login-register.html"><i class="fa fa-sign-out"></i> Logout</a>
</div>
</div>
<!-- My Account Tab Menu End -->
<!-- My Account Tab Content Start -->
<div class="col-lg-9 col-md-8">
<div class="tab-content" id="myaccountContent">
<!-- Single Tab Content Start -->
<div class="tab-pane fade show active" id="dashboad" role="tabpanel">
<div class="myaccount-content">
<h5>Dashboard</h5>
<div class="welcome">
<p>Hello, <strong><?php
echo $_SESSION['name'];
?></strong> </p>
</div>
<p class="mb-0">From your account dashboard. you can easily check &
view your recent orders, manage your shipping and billing addresses
and edit your password and account details.</p>
</div>
</div>
<!-- Single Tab Content End -->
<!-- Single Tab Content Start -->
<div class="tab-pane fade" id="orders" role="tabpanel">
<div class="myaccount-content">
<h5>Orders</h5>
<div class="myaccount-table table-responsive text-center">
<table class="table table-bordered">
<thead class="thead-light">
<tr>
<th>Order</th>
<th>Date</th>
<th>Status</th>
<th>Total</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Aug 22, 2018</td>
<td>Pending</td>
<td>$3000</td>
<td><a href="cart.html" class="btn btn-sqr">View</a>
</td>
</tr>
<tr>
<td>2</td>
<td>July 22, 2018</td>
<td>Approved</td>
<td>$200</td>
<td><a href="cart.html" class="btn btn-sqr">View</a>
</td>
</tr>
<tr>
<td>3</td>
<td>June 12, 2017</td>
<td>On Hold</td>
<td>$990</td>
<td><a href="cart.html" class="btn btn-sqr">View</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Single Tab Content End -->
<!-- Single Tab Content Start -->
<!-- Single Tab Content End -->
<!-- Single Tab Content Start -->
<div class="tab-pane fade" id="payment-method" role="tabpanel">
<div class="myaccount-content">
<h5>Payment Method</h5>
<p class="saved-message">You Can't Saved Your Payment Method yet.</p>
</div>
</div>
<!-- Single Tab Content End -->
<!-- Single Tab Content Start -->
<div class="tab-pane fade" id="address-edit" role="tabpanel">
<div class="myaccount-content">
<h5>Billing Address</h5>
<address>
<p><strong>Erik Jhonson</strong></p>
<p>1355 Market St, Suite 900 <br>
San Francisco, CA 94103</p>
<p>Mobile: (123) 456-7890</p>
</address>
<a href="#" class="btn btn-sqr"><i class="fa fa-edit"></i>
Edit Address</a>
</div>
</div>
<!-- Single Tab Content End -->
</div>
</div> <!-- My Account Tab Content End -->
</div>
</div> <!-- My Account Page End -->
</div>
</div>
</div>
</div>
</div>
<!-- my account wrapper end -->
</main>
<!-- Scroll to top start -->
<div class="scroll-top not-visible">
<i class="fa fa-angle-up"></i>
</div>
<!-- Scroll to Top End -->
<?php
include "component/_footer.php";
?>
<!-- footer area end -->
<!-- Quick view modal end -->
<!-- Modernizer JS -->
<script src="js/modernizr-3.6.0.min.js"></script>
<!-- jQuery JS -->
<script src="js/jquery-3.6.0.min.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.bundle.min.js"></script>
<!-- slick Slider JS -->
<script src="js/plugins/slick.min.js"></script>
<!-- Countdown JS -->
<script src="js/plugins/countdown.min.js"></script>
<!-- Nice Select JS -->
<script src="js/plugins/nice-select.min.js"></script>
<!-- jquery UI JS -->
<script src="js/plugins/jqueryui.min.js"></script>
<!-- Image zoom JS -->
<script src="js/plugins/image-zoom.min.js"></script>
<!-- Images loaded JS -->
<script src="js/plugins/imagesloaded.pkgd.min.js"></script>
<!-- mail-chimp active js -->
<script src="js/plugins/ajaxchimp.js"></script>
<!-- contact form dynamic js -->
<script src="js/plugins/ajax-mail.js"></script>
<!-- google map api -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCfmCVTjRI007pC1Yk2o2d_EhgkjTsFVN8"></script>
<!-- google map active js -->
<script src="js/plugins/google-map.js"></script>
<!-- Main JS -->
<script src="js/main.js"></script>
</body>
</html>