-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1468 lines (1363 loc) · 51.5 KB
/
index.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
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
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Ashish S. Maharjan" />
<meta name="robots" content="index, follow" />
<link
rel="manifest"
href="https://asis2016.github.io/bootstrap-5-admin-template/manifest.json"
/>
<meta
name="description"
content="adminAM - Bootstrap 5 Admin Template with Dashboard Demo"
/>
<meta
name="keywords"
content="adminAM, Bootstrap 5.3.2, HTML, CSS, SASS, JavaScript, Admin template, Dashboard template"
/>
<!-- for PWA -->
<meta name="theme-color" content="white" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Hello World App" />
<meta
name="msapplication-TileImage"
content="static/img/favicons/android-chrome-192x192.png"
/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<title>Admin Template | Dashboard</title>
<!-- <meta http-equiv="refresh" content="5"/> -->
<!-- CSS -->
<link href="static/css/bootstrap.min.css" rel="stylesheet" />
<link href="static/css/style.css" rel="stylesheet" />
<!-- Favicons -->
<link
rel="apple-touch-icon"
href="static/img/favicons/apple-touch-icon.png"
sizes="120x120"
/>
<link
rel="icon"
href="static/img/favicons/favicon-32x32.png"
sizes="32x32"
type="image/png"
/>
<link
rel="icon"
href="static/img/favicons/favicon-16x16.png"
sizes="16x16"
type="image/png"
/>
<link rel="icon" href="static/img/favicons/favicon.ico" />
<!-- jvectormap -->
<link
rel="stylesheet"
href="static/css/jquery-jvectormap-2.0.5.css"
type="text/css"
media="screen"
/>
<!-- google sitemap -->
<meta
name="google-site-verification"
content="QI5mxFBO2xqf2NLOetb1-a68pb2gXVZpWgBnWKIN8RQ"
/>
</head>
<body>
<div class="wrapper d-flex h-100">
<!-- #mainSidebar -->
<nav id="mainSidebar" class="h-100">
<div class="d-flex flex-column flex-shrink-0 p-3">
<!-- first a -->
<div
class="d-flex align-items-center justify-content-between mb-3 mb-md-0 me-md-auto w-100"
>
<!-- logo for LG screen -->
<span class="fs-4 logo-lg only-d-lg">
<a href="index.html">
<img src="static/img/logo-100x25.png" alt="" />
</a>
</span>
<!-- logo for SM screen -->
<span class="fs-4 logo-sm only-d-sm">
<img src="static/img/logo-40x25.png" alt="" />
</span>
<!-- for SM screen - close -->
<span class="d-none" id="sidebarUntoggleBtn">
<i class="bi bi-x-circle-fill"></i>
</span>
</div>
<!-- first a ends -->
<hr />
<ul class="nav nav-pills flex-column mb-auto">
<!-- accounts -->
<p class="mt-2 mb-1 text-secondary text-small">DASHBOARD</p>
<li class="nav-item">
<a href="index.html" class="nav-link active" aria-current="page">
<i class="bi bi-house-door-fill me-2"></i>
Home v.1
</a>
</li>
<!-- todo -->
<li class="d-none">
<a href="index.html#" class="nav-link">
<i class="bi bi-marker-tip me-2"></i>
Widgets
</a>
</li>
<!-- todo -->
<li class="d-none">
<a href="index.html#" class="nav-link">
<i class="bi bi-ui-checks-grid me-2"></i>
Forms
</a>
</li>
<!-- products -->
<p class="mt-2 mb-1 text-secondary text-small">PRODUCTS</p>
<li>
<a href="products/index.html" class="nav-link">
<i class="bi bi-table me-2"></i>
Products
</a>
</li>
<li>
<a href="sales/index.html" class="nav-link">
<i class="bi bi-bank me-2"></i>
Sales
</a>
</li>
<li>
<a href="expenses/index.html" class="nav-link">
<i class="bi bi-receipt me-2"></i>
Expense
</a>
</li>
<!-- accounts -->
<p class="mt-2 mb-1 text-secondary text-small">ACCOUNTS</p>
<li>
<a href="accounts/login/index.html" class="nav-link">
<i class="bi bi-box-arrow-right me-2"></i>
Sign in
</a>
</li>
<li>
<a href="profile/index.html" class="nav-link">
<i class="bi bi-person-circle me-2"></i>
My Profile
</a>
</li>
<li>
<a href="accounts/registration/index.html" class="nav-link">
<i class="bi bi-at me-2"></i>
Registration
</a>
</li>
<!-- Theme -->
<p class="mt-2 mb-1 text-secondary text-small">THEME</p>
<li>
<a href="components/index.html" class="nav-link">
<i class="bi bi-file-font me-2"></i>
Components
</a>
</li>
<!-- others -->
<p class="mt-2 mb-1 text-secondary text-small">OTHERS</p>
<li>
<a href="404/index.html" class="nav-link">
<i class="bi bi-4-circle-fill me-2"></i>
404
</a>
</li>
<li>
<a href="blank-page/index.html" class="nav-link">
<i class="bi bi-file-earmark-fill me-2"></i>
Blank Page
</a>
</li>
<li>
<!-- "sys logs = timeline" -->
<a href="system-logs/index.html" class="nav-link">
<i class="bi bi-body-text me-2"></i>
Sys Logs
</a>
</li>
<li>
<a href="faq/index.html" class="nav-link">
<i class="bi bi-person-raised-hand me-2"></i>
FAQ
</a>
</li>
<li>
<a href="documentation/index.html" class="nav-link">
<i class="bi bi-file-earmark-text me-2"></i>
Documentation
</a>
</li>
</ul>
</div>
</nav>
<!-- #mainSidebar ends -->
<!-- #pageContent -->
<div id="pageContent" class="d-flex flex-column">
<!-- topnav -->
<div id="topNavigation" class="px-3 py-2">
<div class="container-fluid">
<div class="d-flex justify-content-between align-items-center">
<!-- nav-left, breadcrumb -->
<a
href="index.html#"
class="nav-left d-flex align-items-center my-2 my-lg-0 me-lg-auto text-white text-decoration-none"
>
<i class="bi bi-list" id="sidebarToggleBtn"></i>
</a>
<div class="d-flex justify-content-end align-items-center">
<!-- search form -->
<form
class="col-xl-4 col-md-auto col-lg-auto mb-0 me-xl-3"
role="search"
>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="search here"
/>
<a class="btn" href="search-results/index.html">
<i class="bi bi-search"></i>
</a>
</div>
</form>
<!-- nav-right -->
<div class="nav-right col-md-auto col-lg-auto my-2">
<!-- nav -->
<ul class="nav">
<!-- Home icon for sm screen -->
<li class="only-d-sm">
<a href="index.html" class="nav-link text-white">
<i class="bi bi-house-door-fill"></i>
</a>
</li>
<!-- Email -->
<li>
<a href="mail/index.html" class="nav-link text-white">
<i class="bi bi-envelope">
<span
class="position-absolute top-0 start-100 translate-middle p-1 bg-info rounded-circle"
>
<span class="visually-hidden">New alerts</span>
</span>
</i>
</a>
</li>
<!-- notification -->
<li>
<a
href="index.html#"
class="nav-link text-white"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<i class="bi bi-bell">
<span
class="position-absolute top-0 start-100 translate-middle p-1 bg-info rounded-circle"
>
<span class="visually-hidden">New alerts</span>
</span>
</i>
</a>
<ul class="dropdown-menu dropdown-menu-end">
<li>
<a class="dropdown-item" href="messenger/index.html">
<small
><i class="bi bi-envelope me-2"></i>10 new
messages</small
>
</a>
</li>
<li>
<a
class="dropdown-item"
href="single-page/index.html"
>
<small
><i class="bi bi-file-pdf me-2"></i>5 new
reports</small
>
</a>
</li>
</ul>
</li>
<!-- for profile page -->
<li>
<a
href="index.html#"
class="nav-link text-white"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<i class="bi bi-person-circle"></i>
</a>
<ul class="dropdown-menu dropdown-menu-end">
<li>
<a class="dropdown-item" href="profile/index.html">
<small>
<i class="bi bi-person-fill me-2"></i>My Profile
</small>
</a>
</li>
<li>
<a
class="dropdown-item"
href="system-logs/index.html"
>
<small>
<i class="bi bi-body-text me-2"></i>Acitivity Log
</small>
</a>
</li>
<li>
<a class="dropdown-item" href="profile/index.html">
<small>
<i class="bi bi-gear-fill me-2"></i>Settings
</small>
</a>
</li>
<!-- <hr class="my-1"> -->
<div class="divider my-1"></div>
<li>
<a
class="dropdown-item"
href="accounts/login/index.html"
>
<small>
<i class="bi bi-box-arrow-right me-2"></i>Sign out
</small>
</a>
</li>
</ul>
</li>
<!-- for modal applications -->
<li>
<a
href="index.html#"
class="nav-link text-white"
data-bs-toggle="modal"
data-bs-target="#modalApplication"
>
<i class="bi bi-boxes"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- topnav ends -->
<div class="container-fluid px-4">
<!-- section searchForMobile -->
<div class="row my-4 sm-my-3 sm-mt-0" id="searchForMobile">
<div class="col">
<form>
<div class="input-group">
<input
type="text"
class="form-control form-control-dark text-bg-dark text-white"
value="search here"
/>
<a class="btn" href="search-results/index.html">
<i class="bi bi-search"></i>
</a>
</div>
</form>
</div>
</div>
<!-- section searchForMobile ends -->
<!-- main_content -->
<!-- page title -->
<div class="pageTitle pt-3 pb-3 md-pt-0">
<h3 class="md-mb-0">Dashboard</h3>
<div class="btn-toolbar mb-2">
<div class="btn-group me-2">
<button
id="generateReport"
type="button"
class="btn btn-sm btn-outline-secondary"
data-bs-toggle="modal"
data-bs-target="#modalGenerateReport"
>
Report
</button>
<button type="button" class="btn btn-sm btn-outline-secondary">
Export
</button>
</div>
<button
type="button"
class="btn btn-sm btn-outline-secondary dropdown-toggle"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<span data-feather="calendar"></span>
More options
</button>
<ul class="dropdown-menu dropdown-menu-end">
<li>
<a class="dropdown-item" href="index.html#">
<small>
<i class="bi bi-1-square me-2"></i>
Option one
</small>
</a>
</li>
<li>
<a class="dropdown-item" href="index.html#">
<small>
<i class="bi bi-2-square me-2"></i>
Option two
</small>
</a>
</li>
</ul>
</div>
</div>
<!-- page title ends -->
<!-- row for cardQuickInfo -->
<div class="row mt-4 sm-mt-3" id="sectionDashboardQuickInfo">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-3 col-xl-3 sm-mb-3">
<div class="card cardQuickInfo">
<div class="card-body">
<div>
<h3>$ 200K</h3>
<p>Total earnings</p>
</div>
<div>
<i class="bi bi-currency-dollar"></i>
</div>
</div>
<div class="card-footer text-center">
<a href="sales/index.html"
>Read more <i class="bi bi-arrow-right-circle"></i
></a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-3 col-xl-3 sm-mb-3">
<div class="card cardQuickInfo">
<div class="card-body">
<div>
<h3>29%</h3>
<p>Total bounce rate</p>
</div>
<div>
<i class="bi bi-globe-americas"></i>
</div>
</div>
<div class="card-footer text-center">
<a href="single-page/index.html"
>Read more <i class="bi bi-arrow-right-circle"></i
></a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-3 col-xl-3 sm-mb-3">
<div class="card cardQuickInfo">
<div class="card-body">
<div>
<h3>499</h3>
<p>New users registration</p>
</div>
<div>
<i class="bi bi-person-fill-add"></i>
</div>
</div>
<div class="card-footer text-center">
<a href="single-page/index.html"
>Read more <i class="bi bi-arrow-right-circle"></i
></a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-3 col-xl-3 sm-mb-3">
<div class="card cardQuickInfo">
<div class="card-body">
<div>
<h3>$ 10.5k</h3>
<p>Yearly expense report</p>
</div>
<div>
<i class="bi bi-receipt"></i>
</div>
</div>
<div class="card-footer text-center">
<a href="expenses/index.html"
>Read more <i class="bi bi-arrow-right-circle"></i
></a>
</div>
</div>
</div>
</div>
<!-- row for cardQuickInfo ends -->
<div class="row mt-4 sm-mt-0">
<div class="col-lg-8">
<!-- purhcase_sales_history -->
<div class="card sm-mb-3">
<div class="card-body">
<h6 class="card-title">Purchase & Sales History</h6>
<canvas
id="lineChartExampleOne"
style="height: 350px; width: 100%"
></canvas>
</div>
</div>
<!-- purhcase_sales_history ends -->
<!-- internal_projects -->
<div class="card mt-4 sm-mt-0">
<div class="card-header py-3">
<h6 class="m-0">Internal Projects</h6>
</div>
<div class="card-body">
<p class="small d-flex justify-content-between">
Social Media Marketing <span class="float-right">80%</span>
</p>
<div class="progress mb-4">
<div
class="progress-bar bg-success"
role="progressbar"
style="width: 80%"
></div>
</div>
<p class="small d-flex justify-content-between">
AWS migration <span class="float-right">20%</span>
</p>
<div class="progress mb-4">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 20%"
></div>
</div>
<p class="small d-flex justify-content-between">
Payment Gateway Asia <span class="float-right">60%</span>
</p>
<div class="progress mb-4">
<div
class="progress-bar bg-warning"
role="progressbar"
style="width: 60%"
></div>
</div>
<p class="small d-flex justify-content-between">
DE Warehouse Setup <span class="float-right">90%</span>
</p>
<div class="progress mb-4">
<div
class="progress-bar bg-success"
role="progressbar"
style="width: 90%"
></div>
</div>
<p class="small d-flex justify-content-between">
SAP-ERP System <span class="float-right">5%</span>
</p>
<div class="progress mb-4">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 5%"
></div>
</div>
</div>
</div>
<!-- internal_projects ends -->
<!-- user_demographics -->
<div class="card mt-4 sm-mt-3">
<div class="card-header py-3">
<h6 class="m-0">User Demographics</h6>
</div>
<div class="card-body p-0">
<div id="world-map" style="width: 100%; height: 400px"></div>
</div>
</div>
<!-- user_demographics ends -->
</div>
<div class="col-lg-4 col-sm-12 col-xs-12">
<!-- visitors' browser -->
<div class="card sm-mt-3">
<div class="card-body">
<h6 class="card-title">Visitors' Browser</h6>
<div class="d-flex justify-content-center">
<canvas
id="visitorBrowser"
style="height: 300; width: 300"
></canvas>
</div>
<!-- table -->
<table class="table table-responsive mt-4">
<tr>
<td>
<i
class="bi bi-circle-fill bg-dark me-2"
style="color: #dc3545"
></i>
Safari
</td>
<td>10%</td>
</tr>
<tr>
<td>
<i
class="bi bi-circle-fill bg-dark me-2"
style="color: #ffda6a"
></i>
Chrome
</td>
<td>21%</td>
</tr>
<tr>
<td>
<i
class="bi bi-circle-fill bg-dark me-2"
style="color: #20c997"
></i>
IE
</td>
<td>19%</td>
</tr>
<tr>
<td>
<i
class="bi bi-circle-fill bg-dark me-2"
style="color: #6f42c1"
></i>
Opera
</td>
<td>5%</td>
</tr>
<tr>
<td>
<i
class="bi bi-circle-fill bg-dark me-2"
style="color: #fd7e14"
></i>
Firefox
</td>
<td>42%</td>
</tr>
<tr>
<td>
<i
class="bi bi-circle-fill bg-dark me-2"
style="color: #6610f2"
></i>
Others
</td>
<td>3%</td>
</tr>
</table>
</div>
</div>
<!-- visitors' browser ends -->
<!-- recently added products -->
<div class="card mt-4 sm-mt-3">
<div class="card-body">
<h6 class="card-title">Recently added products</h6>
<div class="media">
<img
src="static/img/products/P001.png"
height="50px"
width="50px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Smartphone X
<span>$149.99</span>
</h6>
<p>High-performance smartphone.</p>
</div>
</div>
<div class="media">
<img
src="static/img/products/P005.png"
height="50px"
width="50px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Digital Camera
<span>$79.99</span>
</h6>
<p>
Capture moments with high-resolution digital imaging.
</p>
</div>
</div>
<div class="media">
<img
src="static/img/products/P003.png"
height="50px"
width="50px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Fitness Tracker
<span>$1599.99</span>
</h6>
<p>Track your fitness activities.</p>
</div>
</div>
<div class="media">
<img
src="static/img/products/P009.png"
height="50px"
width="50px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Smart Light Bulbs
<span>$49.99</span>
</h6>
<p>Adjustable lighting with smart connectivity.</p>
</div>
</div>
<div class="media">
<img
src="static/img/products/P002.png"
height="50px"
width="50px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Laptop Pro
<span>$129.99</span>
</h6>
<p>Powerful laptop for professional use.</p>
</div>
</div>
<div class="media">
<img
src="static/img/products/P004.png"
height="50px"
width="50px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Wireless Headphones
<span>$199.99</span>
</h6>
<p>With immersive audio experience.</p>
</div>
</div>
</div>
</div>
<!-- recently added products ends -->
</div>
</div>
<!-- For messenger, and order status -->
<div class="row">
<div class="col-lg-3">
<div class="card mt-4 sm-mt-3">
<div class="card-body">
<h6
class="card-title d-flex justify-content-between align-items-center"
>
Messages
<small>
<a href="messenger/index.html" class="amj-a">Read all</a>
</small>
</h6>
<div class="media py-2 my-2">
<img
src="static/img/profile/profile-1.jpg"
class="rounded-circle me-3"
height="45px"
width="45px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
John Doe
<span>Jan. 1, 2024</span>
</h6>
<p>Hello, how are you doing today?</p>
</div>
</div>
<div class="divider"></div>
<div class="media py-2 my-2">
<img
src="static/img/profile/profile-2.jpg"
class="rounded-circle me-3"
height="45px"
width="45px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Alice Smith
<span>Feb. 15, 2024</span>
</h6>
<p>Sending a quick update on our project.</p>
</div>
</div>
<div class="divider"></div>
<div class="media py-2 my-2">
<img
src="static/img/profile/profile-3.jpg"
class="rounded-circle me-3"
height="45px"
width="45px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Bob Johnson
<span>Mar. 10, 2024</span>
</h6>
<p>Friendly reminder about our upcoming meeting.</p>
</div>
</div>
<div class="divider"></div>
<div class="media py-2 my-2">
<img
src="static/img/profile/profile-4.jpg"
class="rounded-circle me-3"
height="45px"
width="45px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Eva Williams
<span>Apr. 5, 2024</span>
</h6>
<p>Wishing you a fantastic and joyful birthday!</p>
</div>
</div>
<div class="divider"></div>
<div class="media py-2 my-2">
<img
src="static/img/profile/profile-5.jpg"
class="rounded-circle me-3"
height="45px"
width="45px"
alt=""
/>
<div class="media-body">
<h6 class="mt-0">
Jane Doe
<span>May 20, 2024</span>
</h6>
<p>Just wanted to say a quick hello!</p>
</div>
</div>
<div class="divider"></div>
</div>
</div>
</div>
<div class="col-lg-9">
<div class="card mt-4 sm-mt-3">
<div class="card-body table-responsive">
<h6 class="card-title">Order Status</h6>
<div class="table-responsive">
<table class="table overflow-scroll table-hover">
<thead>
<tr>
<th></th>
<th>Client</th>
<th>Order no</th>
<th>Product</th>
<th>Selling price</th>
<th>Payment mode</th>
<th>Date</th>
<th>Payment status</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input class="form-check-input" type="checkbox" />
</td>
<td class="d-flex align-items-center">
<span class="nameInitial">JD</span> John
Doe
</td>
<td>ORD123456</td>
<td>Example Product</td>
<td>49.99</td>
<td>Credit Card</td>
<td>2023-01-01</td>
<td>
<div class="badge badge-outline-success">
Approved
</div>
</td>
</tr>
<tr>
<td>
<input class="form-check-input" type="checkbox" />
</td>
<td class="d-flex align-items-center">
<span class="nameInitial">JS</span> Jane
Smith
</td>
<td>ORD789012</td>
<td>Another Product</td>
<td>29.99</td>
<td>PayPal</td>
<td>2023-02-15</td>
<td>
<div class="badge badge-outline-danger">Failed</div>
</td>
</tr>
<tr>
<td>
<input class="form-check-input" type="checkbox" />
</td>
<td class="d-flex align-items-center">
<span class="nameInitial">BJ</span> Bob
Johnson
</td>
<td>ORD345678</td>
<td>Special Item</td>
<td>99.99</td>
<td>Debit Card</td>
<td>2023-03-20</td>
<td>
<div class="badge badge-outline-success">
Approved
</div>
</td>
</tr>
<tr>
<td>
<input class="form-check-input" type="checkbox" />
</td>
<td class="d-flex align-items-center">
<span class="nameInitial">AB</span> Alice
Brown
</td>
<td>ORD901234</td>
<td>Unique Product</td>
<td>59.99</td>