-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_account.html
582 lines (579 loc) · 24.6 KB
/
my_account.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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sofia - Women's Clothes store</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/swiper.min.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- Favicon -->
<link rel="icon" href="images/brand/favicon.svg" type="image/x-icon">
</head>
<body>
<!-- offcanvas -->
<div class="offcanvas offcanvas-end" id="cart_canvas">
<div class="offcanvas-header">
<h6 class="text-uppercase">shopping bag <span class="text-capitalize">(5 items)</span> </h6>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body bg-light">
<ul class="list-unstyled">
<li>
<div class="card cart_product mb-3">
<figure>
<img src="images/products/product_1.webp" class="" alt="...">
</figure>
<div class="card-body">
<h5 class="card-title">drs-01</h5>
<p class="card-text">Rs. 16,650</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<img src="images/products/product_2.webp" class="" alt="...">
</figure>
<div class="card-body">
<h5 class="card-title">drs-02</h5>
<p class="card-text">Rs. 18,950</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<img src="images/products/product_3.webp" class="" alt="...">
</figure>
<div class="card-body">
<h5 class="card-title">drs-03</h5>
<p class="card-text">Rs. 21,350</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<img src="images/products/product_4.webp" class="" alt="...">
</figure>
<div class="card-body">
<h5 class="card-title">drs-04</h5>
<p class="card-text">Rs. 24,500</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
<li>
<div class="card cart_product mb-3">
<figure>
<img src="images/products/product_5.webp" class="" alt="...">
</figure>
<div class="card-body">
<h5 class="card-title">drs-05</h5>
<p class="card-text">Rs. 28,750</p>
</div>
<div class="card-footer">
<button class="btn">
<i class="ph ph-trash"></i>
</button>
</div>
</div>
</li>
</ul>
</div>
<div class="offcanvas-footer">
<div class="d-flex gap-2 w-100 align-items-center justify-content-between">
<h6 class="fw-normal">Sub Total</h6>
<h6 class="fw-normal">$20.63</h6>
</div>
<small class="text-center w-100 mt-2 mb-3 d-block">Shipping, taxes, and discount codes calculated at checkout.</small>
<a href="checkout.html" class="btn w-100">
<span>Check Out</span>
</a>
<a href="cart.html" class="text_btn mt-2">
<span>View all cart</span>
</a>
</div>
</div>
<!-- end offcanvas -->
<!--============================
= Header =
=============================-->
<header>
<div class="header_top d-sm-block d-none xs-width py-2 text-white">
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="d-flex align-items-center justify-content-start gap-2">
<i class="ph ph-truck"></i>
<p class="small">Free Shipping Above $300</p>
</div>
</div>
<div class="col-sm-4 d-none d-sm-block">
<div class="d-flex align-items-center justify-content-center gap-2">
<i class="ph ph-envelope-simple"></i>
<p class="small">info.sofia@sofia.ae</p>
</div>
</div>
<div class="col-sm-4">
<div class="d-flex align-items-center justify-content-end gap-2">
<i class="ph ph-phone"></i>
<p class="small">+1 (424) 433-3993</p>
</div>
</div>
</div>
</div>
</div>
<div class="header_middle xs-width py-3">
<div class="container">
<div class="row">
<div class="col-md-3 col-6">
<a href="index.html" class="logo">
<img src="images/brand/logo.svg"/ alt="Brand Logo">
</a>
</div>
<div class="col-sm-6 d-md-block d-none">
<div class="header_search_wrapper">
<a href="#" class="header_icon d-md-none d-flex">
<i class="ph ph-magnifying-glass"></i>
</a>
<form class="form-inline w-100 d-md-flex d-none">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" aria-label="Search" aria-describedby="search-addon">
<div class="input-group-append">
<button class="btn btn-primary" type="submit"><i class="ph ph-magnifying-glass"></i></button>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-3 col-6">
<div class="header_ecom_icons">
<a href="cart.html" class="header_icon icon_badge" data-bs-toggle="offcanvas" data-bs-target="#cart_canvas" data-value="5">
<i class="ph ph-shopping-bag"></i>
<span class="d-md-block d-none">Cart</span>
</a>
<a href="cart.html" class="header_icon d-flex d-md-none">
<i class="ph ph-magnifying-glass"></i>
</a>
<a href="track_order.html" class="header_icon d-flex">
<i class="ph ph-truck"></i>
</a>
<a href="login.html" class="header_icon">
<i class="ph ph-user-circle"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="header_bottom xs-width">
<div class="container">
<div class="row">
<div class="col-lg-12 col-sm-2">
<button data-bs-toggle="offcanvas" data-bs-target="#menu" class="sale_btn d-lg-none px-3 d-flex">
<i class="ph ph-list"></i>
</button>
<div id="menu" class="menu">
<div class="offcanvas-header d-lg-none d-flex">
<h5 class="">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body overflow">
<ul class="header_categories d-lg-flex justify-content-between align-items-center gap-4">
<li>
<a class="text-capitalize" href="javascript:void(0)">eid collection</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Luxury Formals</span>
</a>
<a href="collections.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>View All</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Unstitched</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Cotton Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Lawn Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Embroidered Unstitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Printed Unstitched</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Stitched</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Casual Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Formal Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Designer Stitched</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Party Wear Stitched</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Couture Wedding Wear</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Bridal Dresses</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Groom Sherwanis</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Wedding Accessories</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Jewelry</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Earrings</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Necklaces</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Bracelets</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Accessories</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Bags</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Belts</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Scarves</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Casual Wear</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Everyday Comfort</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Weekend Vibes</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Formal Wear</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Office Attire</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Business Meetings</span>
</a>
</div>
</li>
<li>
<a class="text-capitalize" href="javascript:void(0)">Summer Essentials</a>
<div class="dropdown-menu">
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Light Dresses</span>
</a>
<a href="single_collection.html" class="dropdown-item">
<i class="ph ph-caret-right"></i>
<span>Breezy Tops</span>
</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!--==== End of Header ====-->
<!--==========================
= Main =
===========================-->
<main>
<section class="account">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2 class="heading_title">My account</h2>
</div>
<div class="account_wrapper">
<div class="account_sidebar">
<ul class="account_list">
<li>
<a class="active" href="my_account.html">
<i class="ph ph-user-circle"></i>
<span>My account</span>
</a>
</li>
<li>
<a href="address_book.html">
<i class="ph ph-map-pin"></i>
<span>My address book</span>
</a>
</li>
<li>
<a href="orders.html">
<i class="ph ph-shopping-bag"></i>
<span>My orders</span>
</a>
</li>
</ul>
</div>
<div class="account_main">
<h4>My account</h4>
<form class="account_form">
<div class="form-row">
<h5>Personal Information</h5>
<div class="row">
<div class="col-lg-4">
<p>When signing up on an e-commerce site, share your name, email, and phone. Keep your info secure. Enter details accurately for smooth account management.</p>
</div>
<div class="col-lg-4">
<div class="mb-3">
<label for="firstName" class="form-label">First Name (FS)</label>
<input type="text" class="form-control" id="firstName" placeholder="eg. Mateusz">
</div>
<div class="mb-3">
<label for="birthdate" class="form-label">Birthdate (BD)</label>
<input type="date" class="form-control" id="birthdate">
</div>
</div>
<div class="col-lg-4">
<div class="mb-3">
<label for="lastName" class="form-label">Last Name (LS)</label>
<input type="text" class="form-control" id="lastName" placeholder="eg. Kowalski">
</div>
<div class="mb-3">
<label for="phoneNumber" class="form-label">Phone Number (PN)</label>
<input type="tel" class="form-control" id="phoneNumber" placeholder="eg. +1234567890">
</div>
</div>
</div>
</div>
<div class="form-row">
<h5>Email Address</h5>
<div class="row">
<div class="col-lg-4">
<p>Providing your email address is crucial for account creation on e-commerce platforms, facilitating verification and updates.</p>
</div>
<div class="col-lg-4">
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" placeholder="eg. example@example.com">
</div>
</div>
<div class="col-lg-4">
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" placeholder="Enter your password">
</div>
</div>
</div>
</div>
<div class="form-row">
<h5>Password</h5>
<div class="row">
<div class="col-lg-4">
<p>Choose a strong, memorable password for security and update it regularly to protect your account.</p>
</div>
<div class="col-lg-4">
<div class="mb-3">
<label for="current-password" class="form-label">Current Password</label>
<input type="password" class="form-control" id="current-password" placeholder="Enter your current password">
</div>
</div>
<div class="col-lg-4">
<div class="mb-3">
<label for="new-password" class="form-label">New Password</label>
<input type="password" class="form-control" id="new-password" placeholder="Enter your new password">
</div>
</div>
<div class="col-lg-8 offset-lg-4">
<div class="mb-3">
<label for="confirm-password" class="form-label">Confirm Password</label>
<input type="password" class="form-control" id="confirm-password" placeholder="Confirm your new password">
</div>
</div>
<div class="col-lg-12">
<div class="d-flex align-items-center justify-content-end gap-2">
<button class="btn">
<span>Save</span>
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!--==== End of Main ====-->
<!--============================
= Footer =
=============================-->
<footer class="footer pt-5 pb-2">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<a href="index.html" class="logo mx-0 mb-3">
<img src="images/brand/logo.svg" alt="">
</a>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet.</p>
<div class="d-flex gap-2 align-items-center">
<a href="#"><i class="ph ph-facebook-logo"></i></a>
<a href="#"><i class="ph ph-instagram-logo"></i></a>
<a href="#"><i class="ph ph-x-logo"></i></a>
<a href="#"><i class="ph ph-pinterest-logo"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<h5 class="mb-3">Quick Links</h5>
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
<li><a href="single_collection.html">Shop</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<h5 class="mb-3">Categories</h5>
<ul class="list-unstyled">
<li><a href="#">Dresses</a></li>
<li><a href="#">Tops</a></li>
<li><a href="#">Bottoms</a></li>
<li><a href="#">Outerwear</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12 mb-3">
<h5 class="mb-3">Subscribe</h5>
<p>Subscribe to our newsletter for exclusive offers and updates.</p>
<form action="#" method="post" class="subscribe-form">
<div class="input-group">
<input type="email" class="form-control" placeholder="Enter your email" required>
<div class="input-group-append">
<button class="btn btn-primary" type="submit">Subscribe</button>
</div>
</div>
</form>
<div class="footer_payment_methods mt-3">
<figure class="method">
<img src="images/payments/visa.svg" alt="visa">
</figure>
<figure class="method">
<img src="images/payments/amex.svg" alt="amex">
</figure>
<figure class="method">
<img src="images/payments/mastercard.svg" alt="mastercard">
</figure>
<figure class="method">
<img src="images/payments/elo.svg" alt="elo">
</figure>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-10">
<p>© 2024 SOFIA Women's Clothing Store. All rights reserved.</p>
</div>
<div class="col-md-2 text-md-right">
<ul class="list-inline">
<li class="list-inline-item"><a href="privacy_policy.html">Privacy Policy</a></li>
<li class="list-inline-item"><a href="term_conditions.html">Terms of Use</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!--==== End of Footer ====-->
<!-- Scripts Files -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/swiper.min.js"></script>
<script src="js/phosphor-icons.js"></script>
<script src="js/script.js"></script>
</body>
</html>