-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-product.php
934 lines (860 loc) · 64.8 KB
/
home-product.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
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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
<!-- <?php
session_start();
if($_SESSION['id'] ==null){
echo '<script>';
echo 'alert("You should login);';
echo 'window.location.href="./login.php"';
echo '</script>';
}
?> -->
<?php
require_once("./connection/connectdb.php");
?>
<?php
try {
$sql = "select p.*, c.categoryName
from product p
join category c
on p.categoryID = c.categoryID
order by productID desc";
$stmt = $conn->prepare($sql);
$stmt->execute();
} catch (PDOException $ex) {
echo "Error: " . $ex->getMessage();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sản phẩm</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="./assets/css/grid.css">
<link rel="stylesheet" href="./assets/css/responsive.css">
<link rel="icon" type="image/x-icon" href="https://e7.pngegg.com/pngimages/439/678/png-clipart-fourth-industrial-revolution-industrial-internet-of-things-cybermanufacturing-systems-industry-4-others-miscellaneous-blue-thumbnail.png">
<link rel="stylesheet" href="./assets/fonts/fontawesome-free-6.2.0-web/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<!-- heading -->
<header class="header">
<div class="grid wide">
<nav class="header__navbar hide-on-mobile-tablet ">
<ul class="header__navbar-list">
<li class="header__navbar-item header__navbar-item--has-qr header__navbar-item--separate header__navbar-icon-hover">
School shop
<!-- header QR Code -->
<div class="header__qr">
<img src="./assets/img/QR_code.png" alt="QR_code" class="header__qr-img">
<div class="header__qr-app">
<a href="" class="header__qr-link">
<img src="./assets/img/Ch_play.png" alt="Ch_play" class="header__qr-download-img"></a>
<a href="" class="header__qr-link">
<img src="./assets/img/app_store.png" alt="App Store" class="header__qr-download-img"></a>
</div>
</div>
</li>
<li class="header__navbar-item">
<span class="header__navbar-item--title--no-pointer "> Connection </span>
<a href="https://www.facebook.com/" class="header__navbar-icon-link">
<i class=" header__navbar-icon fa-brands fa-facebook"></i>
</a>
<a href="https://www.instagram.com/" class="header__navbar-icon-link">
<i class=" header__navbar-icon fa-brands fa-square-instagram header__fontsize_intagram"></i></i>
</a>
</li>
</ul>
<ul class="header__navbar-list">
<li class="header__navbar-item header__navbar-item--has-notify">
<a href="" class="header__navbar-item-link">
<i class=" header__navbar-icon fa-solid fa-bell"></i> Notify
</a>
<div class="header__notify">
<header class="header__notify-header">
<h3 class="header__notify-header-h3"> New notification received</h3>
</header>
<ul class="header__notify-list">
<li class="header__notify-item header__notify-item--viewed">
<a href="" class="header__notify-link">
<img src="https://cf.shopee.vn/file/375ead9ea51d5a8cba6096b3bb926a2c_tn" alt="" class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name"> Accept cancellation request</span>
<span class="header__notify-description"> Your order cancellation request has been accepted. Order 220915SE045EJG has been canceled successfully. 11:55 September 17, 2022</span>
</div>
</a>
</li>
<li class="header__notify-item header__notify-item--viewed">
<a href="" class="header__notify-link">
<img src="https://cf.shopee.vn/file/375ead9ea51d5a8cba6096b3bb926a2c_tn" alt="" class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name"> Do you have an order in progress?</span>
<span class="header__notify-description"> Shipper reports that your order 220915SE045EJF is still in transit and is expected to be delivered 1-2 days in the future. Please skip this if you receive the item! &10:18 September 23, 2022</span>
</div>
</a>
</li>
<li class="header__notify-item header__notify-item--viewed">
<a href="" class="header__notify-link">
<img src="https://cf.shopee.vn/file/ea161afebb1a3996d95c38f519010d91_tn" alt="" class="header__notify-img">
<div class="header__notify-info">
<span class="header__notify-name"> Successful delivery of parcels</span>
<span class="header__notify-description"> Package VN2225825775534 of order 220915SE045EJF has been successfully delivered to you. 11:27 September 26, 2022 </span>
</div>
</a>
</li>
</ul>
<footer class="header__notify-footer">
<a href="" class="header__notify-footer-btn">See all </a>
</footer>
</div>
</li>
<li class="header__navbar-item">
<a href="" class="header__navbar-item-link">
<i class=" header__navbar-icon fa-solid fa-circle-info"></i> Help</a>
</li>
<!-- <li class="header__navbar-item header__navbar-item--strong header__navbar-item--separate header__navbar-icon-hover">Đăng ký</li>
<li class="header__navbar-item header__navbar-item--strong header__navbar-icon-hover">Đăng nhập</li> -->
<!-- <li class="header__navbar-item header__navbar-user">
<img src="https://cf.shopee.vn/file/72b7d70d6c27c0144182616780b17845_tn" alt="" class="header__navbar-user-img">
<span class="header__navbar-user-name">Xuan Truong</span>
<ul class="header__navbar-user-menu">
<li class="header__navbar-user-item">
<a href="">Tài khoản của tôi</a>
</li>
<li class="header__navbar-user-item">
<a href="">Địa Chỉ của tôi </a>
</li>
<li class="header__navbar-user-item">
<a href="">Đơn mua </a>
</li>
<li class="header__navbar-user-item header__navbar-user-item--sesparate">
<a href="">Đăng xuất </a>
</li>
</ul> -->
</li>
</ul>
</nav>
<!-- Header with search -->
<div class="header-with-search ">
<div class="header__logo ">
<a href="./index.php" class="header__logo-link">
<!-- <svg class="header__logo-img" viewBox="0 0 192 65">
<g fill-rule="evenodd">
<path fill="#fff"
d="M35.6717403 44.953764c-.3333497 2.7510509-2.0003116 4.9543414-4.5823845 6.0575984-1.4379707.6145919-3.36871.9463856-4.896954.8421628-2.3840266-.0911143-4.6237865-.6708937-6.6883352-1.7307424-.7375522-.3788551-1.8370513-1.1352759-2.6813095-1.8437757-.213839-.1790053-.239235-.2937577-.0977428-.4944671.0764015-.1151823.2172535-.3229831.5286218-.7791994.45158-.6616533.5079208-.7446018.5587128-.8221779.14448-.2217688.3792333-.2411091.6107855-.0588804.0243289.0189105.0243289.0189105.0426824.0333083.0379873.0294402.0379873.0294402.1276204.0990653.0907002.0706996.14448.1123887.166248.1287205 2.2265285 1.7438508 4.8196989 2.7495466 7.4376251 2.8501162 3.6423042-.0496401 6.2615109-1.6873341 6.7308041-4.2020035.5160305-2.7675977-1.6565047-5.1582742-5.9070334-6.4908212-1.329344-.4166762-4.6895175-1.7616869-5.3090528-2.1250697-2.9094471-1.7071043-4.2697358-3.9430584-4.0763845-6.7048539.296216-3.8283059 3.8501677-6.6835796 8.340785-6.702705 2.0082079-.004083 4.0121475.4132378 5.937338 1.2244562.6816382.2873109 1.8987274.9496089 2.3189359 1.2633517.2420093.1777159.2898136.384872.1510957.60836-.0774686.12958-.2055158.3350171-.4754821.7632974l-.0029878.0047276c-.3553311.5640922-.3664286.5817134-.447952.7136572-.140852.2144625-.3064598.2344475-.5604202.0732783-2.0600669-1.3839063-4.3437898-2.0801572-6.8554368-2.130442-3.126914.061889-5.4706057 1.9228561-5.6246892 4.4579402-.0409751 2.2896772 1.676352 3.9613243 5.3858811 5.2358503 7.529819 2.4196871 10.4113092 5.25648 9.869029 9.7292478M26.3725216 5.42669372c4.9022893 0 8.8982174 4.65220288 9.0851664 10.47578358H17.2875686c.186949-5.8235807 4.1828771-10.47578358 9.084953-10.47578358m25.370857 11.57065968c0-.6047069-.4870064-1.0948761-1.0875481-1.0948761h-11.77736c-.28896-7.68927544-5.7774923-13.82058185-12.5059489-13.82058185-6.7282432 0-12.2167755 6.13130641-12.5057355 13.82058185l-11.79421958.0002149c-.59136492.0107446-1.06748731.4968309-1.06748731 1.0946612 0 .0285807.00106706.0569465.00320118.0848825H.99995732l1.6812605 37.0613963c.00021341.1031483.00405483.2071562.01173767.3118087.00170729.0236381.003628.0470614.00554871.0704847l.00362801.0782207.00405483.004083c.25545428 2.5789222 2.12707837 4.6560709 4.67201764 4.7519129l.00576212.0055872h37.4122078c.0177132.0002149.0354264.0004298.0531396.0004298.0177132 0 .0354264-.0002149.0531396-.0004298h.0796027l.0017073-.0015043c2.589329-.0706995 4.6867431-2.1768587 4.9082648-4.787585l.0012805-.0012893.0017073-.0350275c.0021341-.0275062.0040548-.0547975.0057621-.0823037.0040548-.065757.0068292-.1312992.0078963-.1964115l1.8344904-37.207738h-.0012805c.001067-.0186956.0014939-.0376062.0014939-.0565167M176.465457 41.1518926c.720839-2.3512494 2.900423-3.9186779 5.443734-3.9186779 2.427686 0 4.739107 1.6486899 5.537598 3.9141989l.054826.1556978h-11.082664l.046506-.1512188zm13.50267 3.4063683c.014933.0006399.014933.0006399.036906.0008531.021973-.0002132.021973-.0002132.044372-.0008531.53055-.0243144.950595-.4766911.950595-1.0271786 0-.0266606-.000853-.0496953-.00256-.0865936.000427-.0068251.000427-.020262.000427-.0635588 0-5.1926268-4.070748-9.4007319-9.09145-9.4007319-5.020488 0-9.091235 4.2081051-9.091235 9.4007319 0 .3871116.022399.7731567.067838 1.1568557l.00256.0204753.01408.1013102c.250022 1.8683731 1.047233 3.5831812 2.306302 4.9708108-.00064-.0006399.00064.0006399.007253.0078915 1.396026 1.536289 3.291455 2.5833031 5.393601 2.9748936l.02752.0053321v-.0027727l.13653.0228215c.070186.0119439.144211.0236746.243409.039031 2.766879.332724 5.221231-.0661182 7.299484-1.1127057.511777-.2578611.971928-.5423827 1.37064-.8429007.128211-.0968312.243622-.1904632.34346-.2781231.051412-.0452164.092372-.083181.114131-.1051493.468898-.4830897.498124-.6543572.215249-1.0954297-.31146-.4956734-.586228-.9179769-.821744-1.2675504-.082345-.1224254-.154023-.2267215-.214396-.3133151-.033279-.0475624-.033279-.0475624-.054399-.0776356-.008319-.0117306-.008319-.0117306-.013866-.0191956l-.00256-.0038391c-.256208-.3188605-.431565-.3480805-.715933-.0970445-.030292.0268739-.131624.1051493-.14997.1245582-1.999321 1.775381-4.729508 2.3465571-7.455854 1.7760208-.507724-.1362888-.982595-.3094759-1.419919-.5184948-1.708127-.8565509-2.918343-2.3826022-3.267563-4.1490253l-.02752-.1394881h13.754612zM154.831964 41.1518926c.720831-2.3512494 2.900389-3.9186779 5.44367-3.9186779 2.427657 0 4.739052 1.6486899 5.537747 3.9141989l.054612.1556978h-11.082534l.046505-.1512188zm13.502512 3.4063683c.015146.0006399.015146.0006399.037118.0008531.02176-.0002132.02176-.0002132.044159-.0008531.530543-.0243144.950584-.4766911.950584-1.0271786 0-.0266606-.000854-.0496953-.00256-.0865936.000426-.0068251.000426-.020262.000426-.0635588 0-5.1926268-4.070699-9.4007319-9.091342-9.4007319-5.020217 0-9.091343 4.2081051-9.091343 9.4007319 0 .3871116.022826.7731567.068051 1.1568557l.00256.0204753.01408.1013102c.250019 1.8683731 1.04722 3.5831812 2.306274 4.9708108-.00064-.0006399.00064.0006399.007254.0078915 1.396009 1.536289 3.291417 2.5833031 5.393538 2.9748936l.027519.0053321v-.0027727l.136529.0228215c.070184.0119439.144209.0236746.243619.039031 2.766847.332724 5.22117-.0661182 7.299185-1.1127057.511771-.2578611.971917-.5423827 1.370624-.8429007.128209-.0968312.243619-.1904632.343456-.2781231.051412-.0452164.09237-.083181.11413-.1051493.468892-.4830897.498118-.6543572.215246-1.0954297-.311457-.4956734-.586221-.9179769-.821734-1.2675504-.082344-.1224254-.154022-.2267215-.21418-.3133151-.033492-.0475624-.033492-.0475624-.054612-.0776356-.008319-.0117306-.008319-.0117306-.013866-.0191956l-.002346-.0038391c-.256419-.3188605-.431774-.3480805-.716138-.0970445-.030292.0268739-.131623.1051493-.149969.1245582-1.999084 1.775381-4.729452 2.3465571-7.455767 1.7760208-.507717-.1362888-.982582-.3094759-1.419902-.5184948-1.708107-.8565509-2.918095-2.3826022-3.267311-4.1490253l-.027733-.1394881h13.754451zM138.32144123 49.7357905c-3.38129629 0-6.14681004-2.6808521-6.23169343-6.04042014v-.31621743c.08401943-3.35418649 2.85039714-6.03546919 6.23169343-6.03546919 3.44242097 0 6.23320537 2.7740599 6.23320537 6.1960534 0 3.42199346-2.7907844 6.19605336-6.23320537 6.19605336m.00172791-15.67913203c-2.21776751 0-4.33682838.7553485-6.03989586 2.140764l-.19352548.1573553V34.6208558c0-.4623792-.0993546-.56419733-.56740117-.56419733h-2.17651376c-.47409424 0-.56761716.09428403-.56761716.56419733v27.6400724c0 .4539841.10583425.5641973.56761716.5641973h2.17651376c.46351081 0 .56740117-.1078454.56740117-.5641973V50.734168l.19352548.1573553c1.70328347 1.3856307 3.82234434 2.1409792 6.03989586 2.1409792 5.27140956 0 9.54473746-4.2479474 9.54473746-9.48802964 0-5.239867-4.2733279-9.48781439-9.54473746-9.48781439M115.907646 49.5240292c-3.449458 0-6.245805-2.7496948-6.245805-6.1425854 0-3.3928907 2.79656-6.1427988 6.245805-6.1427988 3.448821 0 6.24538 2.7499081 6.24538 6.1427988 0 3.3926772-2.796346 6.1425854-6.24538 6.1425854m.001914-15.5438312c-5.28187 0-9.563025 4.2112903-9.563025 9.4059406 0 5.1944369 4.281155 9.4059406 9.563025 9.4059406 5.281657 0 9.562387-4.2115037 9.562387-9.4059406 0-5.1946503-4.280517-9.4059406-9.562387-9.4059406M94.5919049 34.1890939c-1.9281307 0-3.7938902.6198995-5.3417715 1.7656047l-.188189.1393105V23.2574169c0-.4254677-.1395825-.5643476-.5649971-.5643476h-2.2782698c-.4600414 0-.5652122.1100273-.5652122.5643476v29.2834155c0 .443339.1135587.5647782.5652122.5647782h2.2782698c.4226187 0 .5649971-.1457701.5649971-.5647782v-9.5648406c.023658-3.011002 2.4931278-5.4412923 5.5299605-5.4412923 3.0445753 0 5.516841 2.4421328 5.5297454 5.4630394v9.5430935c0 .4844647.0806524.5645628.5652122.5645628h2.2726775c.481764 0 .565212-.0824666.565212-.5645628v-9.5710848c-.018066-4.8280677-4.0440197-8.7806537-8.9328471-8.7806537M62.8459442 47.7938061l-.0053397.0081519c-.3248668.4921188-.4609221.6991347-.5369593.8179812-.2560916.3812097-.224267.551113.1668119.8816949.91266.7358184 2.0858968 1.508535 2.8774525 1.8955369 2.2023021 1.076912 4.5810275 1.646045 7.1017886 1.6975309 1.6283921.0821628 3.6734936-.3050536 5.1963734-.9842376 2.7569891-1.2298679 4.5131066-3.6269626 4.8208863-6.5794607.4985136-4.7841067-2.6143125-7.7747902-10.6321784-10.1849709l-.0021359-.0006435c-3.7356476-1.2047686-5.4904836-2.8064071-5.4911243-5.0426086.1099976-2.4715346 2.4015793-4.3179454 5.4932602-4.4331449 2.4904317.0062212 4.6923065.6675996 6.8557356 2.0598624.4562232.2767364.666607.2256796.9733188-.172263.035242-.0587797.1332787-.2012238.543367-.790093l.0012815-.0019308c.3829626-.5500403.5089793-.7336731.5403767-.7879478.258441-.4863266.2214903-.6738208-.244985-1.0046173-.459427-.3290803-1.7535544-1.0024722-2.4936356-1.2978721-2.0583439-.8211991-4.1863175-1.2199998-6.3042524-1.1788111-4.8198184.1046878-8.578747 3.2393171-8.8265087 7.3515337-.1572005 2.9703036 1.350301 5.3588174 4.5000778 7.124567.8829712.4661613 4.1115618 1.6865902 5.6184225 2.1278667 4.2847814 1.2547527 6.5186944 3.5630343 6.0571315 6.2864205-.4192725 2.4743234-3.0117991 4.1199394-6.6498372 4.2325647-2.6382344-.0549182-5.2963324-1.0217793-7.6043603-2.7562084-.0115337-.0083664-.0700567-.0519149-.1779185-.1323615-.1516472-.1130543-.1516472-.1130543-.1742875-.1300017-.4705335-.3247898-.7473431-.2977598-1.0346184.1302162-.0346012.0529875-.3919333.5963776-.5681431.8632459"
></path>
</g>
</svg> -->
<!-- <div class="loader"></div> -->
<div class="planet">
</div>
</a>
</div>
<label for="mobile-search-checkbox" class=" hide-on-PC header__mobile-search hide-on-tablet">
<i class="header__mobile-search-icon fa-solid fa-magnifying-glass "></i>
</label>
<input type="checkbox" hidden id="mobile-search-checkbox" class="header__search-checkbox">
<div class="header__search ">
<div class="header__search-input-wrap">
<input type="text" class="header__search-input" placeholder="Nhập để tìm kiếm sản phẩm ">
<!-- search history -->
<div class="header__search-history">
<h3 class="header__search-history-heading">
Search history
</h3>
<ul class="header__search-history-list">
<li class="header__search-history-item">
<a href="https://www.adidas.com.vn/vi/season_sale?cm_mmc=AdieSEM_Google-_-adidas-SEAPAC-eCom-PPC-B-Brand-Other-Exact-VN_VN-SEAPAC-eCom-Paid_Search-_-B-Other-Exact-VN%20_OCT10FW22_Convert-_-adidas-_-dv%3AeCom&cm_mmc1=VN&cm_mmc2=e&gclid=CjwKCAjwqJSaBhBUEiwAg5W9p2mq4Go8RihOH11o_JKqXUQh2kdznM2M2Cm7Ggu6hl2DvuyIqZ5IVBoCSxUQAvD_BwE&gclsrc=aw.ds">Adidas</a>
</li>
<li class="header__search-history-item">
<a href="https://www.nike.com/my/">Nike</a>
</li>
</ul>
</div>
</div>
<!-- <div class="header__search-select hide-on-tablet">
<span class="header__search-select-lable"> In the shop</span>
<i class=" header__search-select-icon fa-solid fa-chevron-down"></i>
<ul class="header__search-option">
<li class="header__search-option-item">
<span >In the shop</span>
<i class="fa-solid fa-check header__search-option-item--acctive i"></i>
</li>
<li class="header__search-option-item">
<span > Outside the shop</span>
<i class="fa-solid fa-check header__search-option-item--acctive i"></i>
</li>
</ul>
</div> -->
<button class="header__search-btn">
<i class="header__search-btn-icon fa-solid fa-magnifying-glass"></i>
</button>
</div>
<!-- header cart -->
<div class="header__cart">
<div class="header__cart-wrap">
<i class=" header__cart-icon fa-solid fa-cart-shopping"></i>
<span class="header__cart-notice">3</span>
<div class="header__cart-list ">
<!-- Has header__cart-list--no-cart -->
<img src="./assets/img/no-cart.png" alt="" class="header__cart-no-cart-img">
<span class="header__cart-list-no-cart-msg">
No product
</span>
<h4 class="header__cart-heading"> Product added </h4>
<ul class="header__cart-list-item">
<!-- cart item -->
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">Pudding Keycap new </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">436.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">2</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">COWBOY PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">550.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">BAVALO CARGO PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">541.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">Pudding Keycap new </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">436.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">2</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">COWBOY PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">550.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">BAVALO CARGO PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">541.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">Pudding Keycap new </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">436.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">2</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">COWBOY PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">550.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">BAVALO CARGO PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">541.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">Pudding Keycap new </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">436.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">2</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">COWBOY PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">550.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
<li class="header__cart-item">
<img src="https://cdn.shopify.com/s/files/1/0416/8083/0620/products/Hello_Kitty_and_Friends_MAGSAFE__Compatible_iPhone13_Case_Side_HiRes_1200x.jpg?v=1632850208" alt="" class="header__cart-img">
<div class="header__cart-item-info">
<div class="header__cart-item-head">
<h5 class="header__cart-item-name">BAVALO CARGO PANTS </h5>
<div class="header__cart-price-wrap">
<span class="header__cart-item-price">541.000</span>
<span class="header__cart-item-multiply">x</span>
<span class="header__cart-item-qnt">1</span>
</div>
</div>
<div class="header__cart-item-body">
<span class="header__cart-item-description">
Classification: Silver
</span>
<span class="header__cart-item-Remove">Delete</span>
</div>
</div>
</li>
</ul>
<a href="" class="header__cart-view-cart btn btn--primary">View cart</a>
<h5 class="header__cart-view-quantity">3 Add item to cart </h5>
</div>
</div>
</div>
<div class="header-list">
<li class=" header__list-item header__navbar-user-menu-mobile header__navbar-user-menu-tablet header__list-use hide-on-PC">
<img src="https://cf.shopee.vn/file/72b7d70d6c27c0144182616780b17845_tn" alt="" class="header__list-use-img hide-on-PC">
<ul class=" header__list-use-menu hide-on-PC">
<li class="header__list-use-item-name">
<img src="https://cf.shopee.vn/file/72b7d70d6c27c0144182616780b17845_tn" alt="" class=" header__list-use-img hide-on-PC">
<a class="" href="">Xuan Truong</a>
</li>
<li class="header__list-use-item header__list-use-item--sesparate">
<a href="">View Profile</a>
</li>
<li class="header__list-use-item hide-on-PC">
<a href="">Promotion</a>
</li>
<li class="header__list-use-item hide-on-PC">
<a href="">Address </a>
</li>
<li class="header__list-use-item hide-on-PC">
<a href="">cart </a>
</li>
<li class="header__list-use-item header__list-use-item--sesparate hide-on-PC">
<a href="">Log out </a>
</li>
</ul>
</div>
</div>
</div>
<ul class="header__sort-bar">
<li class="header__sort-item">
<a href="" class="header__sort-link">correlate</a>
</li>
<li class="header__sort-item">
<a href="" class="header__sort-link header__sort-item--active">Latest</a>
</li>
<li class="header__sort-item">
<a href="" class="header__sort-link">Selling</a>
</li>
<li class="header__sort-item">
<a href="" class="header__sort-link">Price</a>
</li>
</ul>
</header>
<!-- content -->
<div class="app__container">
<div class="grid wide">
<div class="row sm-gutter app__content">
<div class="col l-2 m-0 c-0 ">
<nav class="category">
<h3 class="category__heading ">
<i class="category__heading-icon fa-solid fa-list"></i>
Category
</h3>
<ul class="category-list">
<li class="category-item category-item--active">
<a href="#" class="category-item__link">Product</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Case Iphone</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Case SamSung</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Case Oppo</a>
</li>
<li class="category-item">
<a href="#" class="category-item__link">Case Xiaomi</a>
</li>
</ul>
</nav>
</div>
<div class=" col l-10 m-12 c-12 ">
<div class="home-filter hide-on-mobile-tablet">
<span class="home__filter__label"> Sorted by </span>
<button class="home__filter__btn btn"> Popular </button>
<button class="home__filter__btn btn btn--primary">Latest </button>
<button class="home__filter__btn btn">Selling</button>
<div class="select-input">
<span class="select-input__label">Price</span>
<i class=" select-input__icon fa-solid fa-chevron-down"></i>
<!-- list option -->
<ul class="select-input__list">
<li class="select-input__item">
<a href="" class="select-input__link">Price: Low to high</a>
</li>
<li class="select-input__item">
<a href="" class="select-input__link">Price: High to low</a>
</li>
</ul>
</div>
<div class="home-filter__page">
<span class="home-filter__page-num">
<span class="home-filter__page-curent">1</span>/14
</span>
<div class="home-filter__page-control">
<a href="" class=" home-filter__page-btn home-filter__page-btn--disabled">
<i class="home-filter__page-icon fa-solid fa-angle-left"></i>
</a>
<a href="" class=" home-filter__page-btn">
<i class="home-filter__page-icon fa-solid fa-angle-right"></i>
</a>
</div>
</div>
</div>
<nav class="mobile-category hide-on-PC">
<ul class="mobile-category__list">
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
<li class="mobile-category__item">
<a href="" class="mobile-category__link">Case-Apple-SamSung </a>
</li>
</ul>
</nav>
<div class="home-product">
<div class="row sm-gutter">
<!-- product-item -->
<?php while ($row = $stmt->fetch()) { ?>
<div class="col l-2-4 m-4 c-6">
<a class="home-product-item" href="./product-detail/detail.php">
<div class="home-product-item__img">
<img src="./assets/img/slider/<?= $row['productImage'] ?>" alt="img_error">
</div>
<h4 class="home-product-item__name"><?= $row['productName'] ?></h4>
<div class="home-product-item__price">
<span class="home-product-item__price-old">100.000</span>
<span class="home-product-item__price-current"><?= $row['productPrice'] ?></span>
</div>
<div class="home-product-item__action">
<span class="home-product-item__like home-product-item__like home-product-item__like--liked">
<i class="home-product-item__like-icon-empty fa-regular fa-heart"></i>
<i class="home-product-item__like-icon-fill fa-solid fa-heart"></i>
</span>
<div class="home-product-item__rating ">
<i class="home-product-item__star--gold fa-solid fa-star"></i>
<i class="home-product-item__star--gold fa-solid fa-star"></i>
<i class="home-product-item__star--gold fa-solid fa-star"></i>
<i class="home-product-item__star--gold fa-solid fa-star"></i>
<i class=" fa-solid fa-star"></i>
</div>
<span class="home-product-item__sold">88 sold </span>
</div>
<div class="home-product-item__origin">
<span class="home-product-item__brand">Truong</span>
<span class="home-product-item__origin-name"><?= $row['productID'] ?></span>
</div>
<div class="home-product-item__favorite">
<i class="fa-solid fa-check"></i>
<span>Yêu thích</span>
</div>
<div class="home-product-item__sale-off">
<span class="home-product-item__sale-off-percent">10%</span>
<span class="home-product-item__sale-off-label">SALE</span>
</div>
<!-- <button onclick="addCart("<?php echo $row["id"] ?>) >Add to Cart</button> -->
</a>
</div>
<?php } ?>
</div>
</div>
<ul class="pagination home-product__pagination">
<li class="pagination-item">
<a href="" class="pagination-item__link">
<i class="pagination-item-icon fa-solid fa-angle-left">
</i>
</a>
</li>
<li class="pagination-item pagination-item--active">
<a href="" class="pagination-item__link ">1 </a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__link">2 </a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__link">3 </a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__link">4 </a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__link">5 </a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__link">... </a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__link">14 </a>
</li>
<li class="pagination-item">
<a href="" class="pagination-item__link">
<i class="pagination-item-icon fa-solid fa-angle-right">
</i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="grid wide footer-content-mobile ">
<div class="row">
<div class="col l-2-4 m-4 c-6">
<h3 class="footer__heading">Customer care </h3>
<ul class="footer-list">
<li class="footer-item">
<a href="" class="footer-item-link">Help Center</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link">Truong-Shop Mall</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link">Shopping guide</a>
</li>
</ul>
</div>
<div class="col l-2-4 m-4 c-6">
<h3 class="footer__heading">Introduce </h3>
<ul class="footer-list">
<li class="footer-item">
<a href="" class="footer-item-link">Introduce</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link">Recruit</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link">Rules</a>
</li>
</ul>
</div>
<div class="col l-2-4 m-4 c-6">
<h3 class="footer__heading">Follow</h3>
<ul class="footer-list">
<li class="footer-item">
<a href="" class="footer-item-link"> <i class="footer-item__icon fa-brands fa-facebook"></i>
Facebook
</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link"> <i class="footer-item__icon fa-brands fa-instagram"></i>
Instagram
</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link"> <i class="footer-item__icon fa-brands fa-linkedin"></i>
Linkedin
</a>
</li>
</ul>
</div>
<div class="col l-2-4 m-4 c-6">
<h3 class="footer__heading">Category</h3>
<ul class="footer-list">
<li class="footer-item">
<a href="" class="footer-item-link">
Apple 12prm
</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link">
Apple 13prm
</a>
</li>
<li class="footer-item">
<a href="" class="footer-item-link">
Apple 14prm
</a>
</li>
</ul>
</div>
<div class="col l-2-4 m-8 c-12">
<h3 class="footer__heading">Go to the app store</h3>
<div class="footer__download">
<div class="footer__download-apps">
<div class="footer__scan-app">
<a href="https://play.google.com/store/games?hl=vi&gl=US" class="footer__scan"><img src="/assets/img/QR_code.png" alt="Download QR" class="footer__download-qr"></a>
<a href="https://play.google.com/store/games?hl=vi&gl=US" class="footer__download-app-link"> <img src="/assets/img/Ch_play.png" alt="Download chplay" class="footer__download-apps-img"></a>
</div>
<div>
<a href="https://www.apple.com/app-store/" class="footer__scan"><img src="/assets/img/QR_code.png" alt="Download QR" class="footer__download-qr"></a>
<a href="https://www.apple.com/app-store/" class="footer__download-app-link"><img src="/assets/img/app_store.png" alt="Download appstore" class="footer__download-apps-img"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="grid wide">
<p class="footer__text">© 2022 - Copyright belongs to Truong . Co., Ltd</p>
</div>
</div>
</footer>
</div>
<!-- modal layout -->
<!-- <div class="modal">
<div class="modal__overlay">
</div>
<div class="modal__body"> -->
<!-- Register form -->
<!-- <div class="auth-form ">
<div class="auth-form__container ">
<div class="auth-form__header ">
<h3 class="auth-form__heading">Đăng Ký</h3>
<span class="auth-form__switch-btn">Đăng nhập</span>
</div>
<div class="auth-form__form">
<div class="auth-form__group">
<input type="text" class="auth-form__input"placeholder="Email của bạn ">
</div>
<div class="auth-form__group">
<input type="password" class="auth-form__input"placeholder="Mật khẩu của bạn ">
</div>
<div class="auth-form__group">
<input type="password" class="auth-form__input"placeholder="Nhập lại mật khẩu ">
</div>
</div>
<div class="auth-form__aside">
<p class="auth-form__policy-text">
Bằng việc đăng ký, bạn đã đồng ý với Truong về
<a href="" class="auth-form__text-link">Diều khoản dịch vụ</a> &
<a href="" class="auth-form__text-link">Chính sách bảo mật vụ</a>
</p>
</div>
<div class="auth-form__controls">
<button class="btn auth-form__controls-back btn--nomal "> TRỞ LẠI</button>
<button class="btn btn--primary"> ĐĂNG KÝ </button>
</div>
</div>
<div class="auth-form__socials">
<a href="" class=" auth-form__socials--facebook btn btn--size-s btn--with-icon">
<i class=" auth-form__socials-icon fa-brands fa-square-facebook"></i>
<span class="auth-form__socials-title"> Kết nối với facebook</span>
</a>
<a href="" class="auth-form__socials--google btn btn btn--size-s btn--with-icon">
<i class=" fa-brands fa-google"></i>
<span class="auth-form__socials-title"> Kết nối với Google</span>
</a>
</div>
</div> -->
<!-- login form -->
<!-- <div class="auth-form ">
<div class="auth-form__container ">
<div class="auth-form__header ">
<h3 class="auth-form__heading">Đăng nhập</h3>
<span class="auth-form__switch-btn">Đăng Ký</span>
</div>
<div class="auth-form__form">
<div class="auth-form__group">
<input type="text" class="auth-form__input"placeholder="Email của bạn ">
</div>
<div class="auth-form__group">
<input type="password" class="auth-form__input"placeholder="Mật khẩu của bạn ">
</div>
</div>
<div class="auth-form__aside">
<div class="auth-form__help">
<a href="" class="auth-form__help-link auth-form__help-forgot">Quên mật khẩu </a>
<span class="auth-form__help-separate"></span>
<a href="" class="auth-form__help-link ">Cần trợ giúp?</a>
</div>
</div>
<div class="auth-form__controls">
<button class="btn auth-form__controls-back btn--nomal "> TRỞ LẠI</button>
<button class="btn btn--primary"> ĐĂNG NHẬP </button>
</div>
</div>
<div class="auth-form__socials">
<a href="" class=" auth-form__socials--facebook btn btn--size-s btn--with-icon">
<i class=" auth-form__socials-icon fa-brands fa-square-facebook"></i>
<span class="auth-form__socials-title"> Kết nối với facebook</span>
</a>
<a href="" class="auth-form__socials--google btn btn btn--size-s btn--with-icon">
<i class=" fa-brands fa-google"></i>
<span class="auth-form__socials-title"> Kết nối với Google</span>
</a>
</div>
</div>
</div>
</div> -->
</body>
</html>