-
Notifications
You must be signed in to change notification settings - Fork 1
/
instructor-dashboard.html
733 lines (682 loc) · 32.1 KB
/
instructor-dashboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Eduport - LMS, Education and Course Theme</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Webestica.com">
<meta name="description" content="Eduport- LMS, Education and Course Theme">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap">
<!-- Plugins CSS -->
<link rel="stylesheet" type="text/css" href="assets/vendor/font-awesome/css/all.min.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/bootstrap-icons/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/apexcharts/css/apexcharts.css">
<!-- Theme CSS -->
<link id="style-switch" rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<!-- Header START -->
<header class="navbar-light navbar-sticky">
<!-- Logo Nav START -->
<nav class="navbar navbar-expand-xl">
<div class="container">
<!-- Logo START -->
<a class="navbar-brand" href="index.html">
<img class="light-mode-item navbar-brand-item" src="assets/images/logo.svg" alt="logo">
<img class="dark-mode-item navbar-brand-item" src="assets/images/logo-light.svg" alt="logo">
</a>
<!-- Logo END -->
<!-- Responsive navbar toggler -->
<button class="navbar-toggler ms-auto" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-animation">
<span></span>
<span></span>
<span></span>
</span>
</button>
<!-- Main navbar START -->
<div class="navbar-collapse w-100 collapse" id="navbarCollapse">
<!-- Nav Main menu START -->
<ul class="navbar-nav navbar-nav-scroll mx-auto">
<!-- Nav item 1 Demos -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="demoMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Demos</a>
<ul class="dropdown-menu" aria-labelledby="demoMenu">
<li> <a class="dropdown-item" href="index.html">Home Default</a></li>
<li> <a class="dropdown-item" href="index-2.html">Home Education</a></li>
<li> <a class="dropdown-item" href="index-3.html">Home Academy</a></li>
<li> <a class="dropdown-item" href="index-4.html">Home Course</a></li>
<li> <a class="dropdown-item" href="index-5.html">Home University</a></li>
<li> <a class="dropdown-item" href="index-6.html">Home Kindergarten</a></li>
<li> <a class="dropdown-item" href="index-7.html">Home Landing</a></li>
<li> <a class="dropdown-item" href="index-8.html">Home Tutor</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="request-demo.html">Request a demo</a></li>
<li> <a class="dropdown-item" href="book-class.html">Book a Class</a></li>
<li> <a class="dropdown-item" href="request-access.html">Free Access</a></li>
<li> <a class="dropdown-item" href="university-admission-form.html">Admission Form</a></li>
<li> <hr class="dropdown-divider"></li>
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown levels</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<!-- dropdown submenu open right -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown (end)</a>
<ul class="dropdown-menu" data-bs-popper="none">
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<!-- dropdown submenu open left -->
<li class="dropdown-submenu dropstart">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown (start)</a>
<ul class="dropdown-menu dropdown-menu-end" data-bs-popper="none">
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
</ul>
</li>
<!-- Nav item 2 Pages -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="pagesMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Pages</a>
<ul class="dropdown-menu" aria-labelledby="pagesMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Course</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="course-grid.html">Course Grid Classic</a></li>
<li> <a class="dropdown-item" href="course-grid-2.html">Course Grid Minimal</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="course-list.html">Course List Classic</a></li>
<li> <a class="dropdown-item" href="course-list-2.html">Course List Minimal</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="course-detail.html">Course Detail Classic</a></li>
<li> <a class="dropdown-item" href="course-detail-min.html">Course Detail Minimal</a></li>
<li> <a class="dropdown-item" href="course-detail-adv.html">Course Detail Advance</a></li>
<li> <a class="dropdown-item" href="course-video-player.html">Course Full Screen Video</a></li>
</ul>
</li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">About</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="about.html">About Us</a></li>
<li> <a class="dropdown-item" href="contact-us.html">Contact Us</a></li>
<li> <a class="dropdown-item" href="blog-grid.html">Blog Grid</a></li>
<li> <a class="dropdown-item" href="blog-masonry.html">Blog Masonry</a></li>
<li> <a class="dropdown-item" href="blog-detail.html">Blog Detail</a></li>
<li> <a class="dropdown-item" href="pricing.html">Pricing</a></li>
</ul>
</li>
<li> <a class="dropdown-item" href="instructor-list.html">Instructor List</a></li>
<li> <a class="dropdown-item" href="instructor-single.html">Instructor Single</a></li>
<li> <a class="dropdown-item" href="become-instructor.html">Become an Instructor</a></li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Authentication</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="sign-in.html">Sign In</a></li>
<li> <a class="dropdown-item" href="sign-up.html">Sign Up</a></li>
<li> <a class="dropdown-item" href="forgot-password.html">Forgot Password</a></li>
</ul>
</li>
<li> <a class="dropdown-item" href="faq.html">FAQs</a></li>
<li> <a class="dropdown-item" href="error-404.html">Error 404</a></li>
<li> <a class="dropdown-item" href="coming-soon.html">Coming Soon</a></li>
<li> <a class="dropdown-item" href="cart.html">Cart</a></li>
<li> <a class="dropdown-item" href="checkout.html">Checkout</a></li>
<li> <a class="dropdown-item" href="empty-cart.html">Empty Cart</a></li>
<li> <a class="dropdown-item" href="wishlist.html">Wishlist</a></li>
</ul>
</li>
<!-- Nav item 3 Account -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="accounntMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Accounts</a>
<ul class="dropdown-menu" aria-labelledby="accounntMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#"><i class="fas fa-user-tie fa-fw me-1"></i>Instructor</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="instructor-dashboard.html"><i class="bi bi-grid-fill fa-fw me-1"></i>Dashboard</a> </li>
<li> <a class="dropdown-item" href="instructor-manage-course.html"><i class="bi bi-basket-fill fa-fw me-1"></i>Courses</a> </li>
<li> <a class="dropdown-item" href="instructor-create-course.html"><i class="bi bi-file-earmark-plus-fill fa-fw me-1"></i>Create Course</a> </li>
<li> <a class="dropdown-item" href="course-added.html"><i class="bi bi-file-check-fill fa-fw me-1"></i>Course Added</a> </li>
<li> <a class="dropdown-item" href="instructor-earning.html"><i class="fas fa-chart-line fa-fw me-1"></i>Earnings</a> </li>
<li> <a class="dropdown-item" href="instructor-studentlist.html"><i class="fas fa-user-graduate fa-fw me-1"></i>Students</a> </li>
<li> <a class="dropdown-item" href="instructor-order.html"><i class="bi bi-cart-check-fill fa-fw me-1"></i>Orders</a> </li>
<li> <a class="dropdown-item" href="instructor-review.html"><i class="bi bi-star-fill fa-fw me-1"></i>Reviews</a> </li>
<li> <a class="dropdown-item" href="instructor-payout.html"><i class="fas fa-wallet fa-fw me-1"></i>Payout</a> </li>
</ul>
</li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#"><i class="fas fa-user-graduate fa-fw me-1"></i>Student</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="student-dashboard.html"><i class="bi bi-grid-fill fa-fw me-1"></i>Dashboard</a> </li>
<li> <a class="dropdown-item" href="student-subscription.html"><i class="bi bi-card-checklist fa-fw me-1"></i>My Subscriptions</a> </li>
<li> <a class="dropdown-item" href="student-course-list.html"><i class="bi bi-basket-fill fa-fw me-1"></i>Courses</a> </li>
<li> <a class="dropdown-item" href="student-payment-info.html"><i class="bi bi-credit-card-2-front-fill fa-fw me-1"></i>Payment Info</a> </li>
<li> <a class="dropdown-item" href="student-bookmark.html"><i class="fas bi-cart-check-fill fa-fw me-1"></i>Wishlist</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#"><i class="fas fa-user-cog fa-fw me-1"></i>Admin (Coming Soon)</a> </li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="instructor-edit-profile.html"><i class="fas fa-fw fa-edit me-1"></i>Edit Profile</a> </li>
<li> <a class="dropdown-item" href="instructor-setting.html"><i class="fas fa-fw fa-cog me-1"></i>Settings</a> </li>
<li> <a class="dropdown-item" href="instructor-delete-account.html"><i class="fas fa-fw fa-trash-alt me-1"></i>Delete Profile</a> </li>
</ul>
</li>
<!-- Nav item 4 Component-->
<li class="nav-item"><a class="nav-link" href="docs/alerts.html">Components</a></li>
<!-- Nav item 5 link-->
<li class="nav-item dropdown">
<a class="nav-link" href="#" id="advanceMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-ellipsis-h"></i>
</a>
<ul class="dropdown-menu dropdown-menu-end min-w-auto" data-bs-popper="none">
<li>
<a class="dropdown-item" href="index-2.htm" target="_blank">
<i class="text-warning fa-fw bi bi-life-preserver me-2"></i>Support
</a>
</li>
<li>
<a class="dropdown-item" href="docs/index.html" target="_blank">
<i class="text-danger fa-fw bi bi-card-text me-2"></i>Documentation
</a>
</li>
<li> <hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="rtl/index.htm" target="_blank">
<i class="text-info fa-fw bi bi-toggle-off me-2"></i>RTL demo
</a>
</li>
<li>
<a class="dropdown-item" href="https://themes.getbootstrap.com/store/webestica/" target="_blank">
<i class="text-success fa-fw bi bi-cloud-download-fill me-2"></i>Buy Eduport!
</a>
</li>
</ul>
</li>
</ul>
<!-- Nav Main menu END -->
<!-- Nav Search START -->
<div class="nav my-3 my-xl-0 px-4 flex-nowrap align-items-center">
<div class="nav-item w-100">
<form class="position-relative">
<input class="form-control pe-5 bg-transparent" type="search" placeholder="Search" aria-label="Search">
<button class="btn bg-transparent px-2 py-0 position-absolute top-50 end-0 translate-middle-y" type="submit"><i class="fas fa-search fs-6 "></i></button>
</form>
</div>
</div>
<!-- Nav Search END -->
</div>
<!-- Main navbar END -->
<!-- Profile START -->
<div class="dropdown ms-1 ms-lg-0">
<a class="avatar avatar-sm p-0" href="#" id="profileDropdown" role="button" data-bs-auto-close="outside" data-bs-display="static" data-bs-toggle="dropdown" aria-expanded="false">
<img class="avatar-img rounded-circle" src="assets/images/avatar/01.jpg" alt="avatar">
</a>
<ul class="dropdown-menu dropdown-animation dropdown-menu-end shadow pt-3" aria-labelledby="profileDropdown">
<!-- Profile info -->
<li class="px-3">
<div class="d-flex align-items-center">
<!-- Avatar -->
<div class="avatar me-3">
<img class="avatar-img rounded-circle shadow" src="assets/images/avatar/01.jpg" alt="avatar">
</div>
<div>
<a class="h6" href="#">Lori Ferguson</a>
<p class="small m-0">example@gmail.com</p>
</div>
</div>
<hr>
</li>
<!-- Links -->
<li><a class="dropdown-item" href="#"><i class="bi bi-person fa-fw me-2"></i>Edit Profile</a></li>
<li><a class="dropdown-item" href="#"><i class="bi bi-gear fa-fw me-2"></i>Account Settings</a></li>
<li><a class="dropdown-item" href="#"><i class="bi bi-info-circle fa-fw me-2"></i>Help</a></li>
<li><a class="dropdown-item bg-danger-soft-hover" href="#"><i class="bi bi-power fa-fw me-2"></i>Sign Out</a></li>
<li> <hr class="dropdown-divider"></li>
<!-- Dark mode switch START -->
<li>
<div class="modeswitch-wrap" id="darkModeSwitch">
<div class="modeswitch-item">
<div class="modeswitch-icon"></div>
</div>
<span>Dark mode</span>
</div>
</li>
<!-- Dark mode switch END -->
</ul>
</div>
<!-- Profile START -->
</div>
</nav>
<!-- Logo Nav END -->
</header>
<!-- Header END -->
<!-- **************** MAIN CONTENT START **************** -->
<main>
<!-- =======================
Page Banner START -->
<section class="pt-0">
<!-- Main banner background image -->
<div class="container-fluid px-0">
<div class="bg-blue h-100px h-md-200px rounded-0" style="background:url(assets/images/pattern/04.png) no-repeat center center; background-size:cover;">
</div>
</div>
<div class="container mt-n4">
<div class="row">
<!-- Profile banner START -->
<div class="col-12">
<div class="card bg-transparent card-body p-0">
<div class="row d-flex justify-content-between">
<!-- Avatar -->
<div class="col-auto mt-4 mt-md-0">
<div class="avatar avatar-xxl mt-n3">
<img class="avatar-img rounded-circle border border-white border-3 shadow" src="assets/images/avatar/01.jpg" alt="">
</div>
</div>
<!-- Profile info -->
<div class="col d-md-flex justify-content-between align-items-center mt-4">
<div>
<h1 class="my-1 fs-4">Lori Stevens <i class="bi bi-patch-check-fill text-info small"></i></h1>
<ul class="list-inline mb-0">
<li class="list-inline-item h6 fw-light me-3 mb-1 mb-sm-0"><i class="fas fa-star text-warning me-2"></i>4.5/5.0</li>
<li class="list-inline-item h6 fw-light me-3 mb-1 mb-sm-0"><i class="fas fa-user-graduate text-orange me-2"></i>12k Enrolled Students</li>
<li class="list-inline-item h6 fw-light me-3 mb-1 mb-sm-0"><i class="fas fa-book text-purple me-2"></i>25 Courses</li>
</ul>
</div>
<!-- Button -->
<div class="d-flex align-items-center mt-2 mt-md-0">
<a href="instructor-create-course.html" class="btn btn-success mb-0">Create a course</a>
</div>
</div>
</div>
</div>
<!-- Profile banner END -->
<!-- Advanced filter responsive toggler START -->
<!-- Divider -->
<hr class="d-xl-none">
<div class="col-12 col-xl-3 d-flex justify-content-between align-items-center">
<a class="h6 mb-0 fw-bold d-xl-none" href="#">Menu</a>
<button class="btn btn-primary d-xl-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar">
<i class="fas fa-sliders-h"></i>
</button>
</div>
<!-- Advanced filter responsive toggler END -->
</div>
</div>
</div>
</section>
<!-- =======================
Page Banner END -->
<!-- =======================
Page content START -->
<section class="pt-0">
<div class="container">
<div class="row">
<!-- Right sidebar START -->
<div class="col-xl-3">
<!-- Responsive offcanvas body START -->
<nav class="navbar navbar-light navbar-expand-xl mx-0">
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<!-- Offcanvas header -->
<div class="offcanvas-header bg-light">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">My profile</h5>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<!-- Offcanvas body -->
<div class="offcanvas-body p-3 p-xl-0">
<div class="bg-dark border rounded-3 pb-0 p-3 w-100">
<!-- Dashboard menu -->
<div class="list-group list-group-dark list-group-borderless">
<a class="list-group-item active" href="instructor-dashboard.html"><i class="bi bi-ui-checks-grid fa-fw me-2"></i>Dashboard</a>
<a class="list-group-item" href="instructor-manage-course.html"><i class="bi bi-basket fa-fw me-2"></i>My Courses</a>
<a class="list-group-item" href="instructor-earning.html"><i class="bi bi-graph-up fa-fw me-2"></i>Earnings</a>
<a class="list-group-item" href="instructor-studentlist.html"><i class="bi bi-people fa-fw me-2"></i>Students</a>
<a class="list-group-item" href="instructor-order.html"><i class="bi bi-folder-check fa-fw me-2"></i>Orders</a>
<a class="list-group-item" href="instructor-review.html"><i class="bi bi-star fa-fw me-2"></i>Reviews</a>
<a class="list-group-item" href="instructor-edit-profile.html"><i class="bi bi-pencil-square fa-fw me-2"></i>Edit Profile</a>
<a class="list-group-item" href="instructor-payout.html"><i class="bi bi-wallet2 fa-fw me-2"></i>Payouts</a>
<a class="list-group-item" href="instructor-setting.html"><i class="bi bi-gear fa-fw me-2"></i>Settings</a>
<a class="list-group-item" href="instructor-delete-account.html"><i class="bi bi-trash fa-fw me-2"></i>Delete Profile</a>
<a class="list-group-item text-danger bg-danger-soft-hover" href="sign-in.html"><i class="fas fa-sign-out-alt fa-fw me-2"></i>Sign Out</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Responsive offcanvas body END -->
</div>
<!-- Right sidebar END -->
<!-- Main content START -->
<div class="col-xl-9">
<!-- Counter boxes START -->
<div class="row g-4">
<!-- Counter item -->
<div class="col-sm-6 col-lg-4">
<div class="d-flex justify-content-center align-items-center p-4 bg-warning bg-opacity-15 rounded-3">
<span class="display-6 text-warning mb-0"><i class="fas fa-tv fa-fw"></i></span>
<div class="ms-4">
<div class="d-flex">
<h5 class="purecounter mb-0 fw-bold" data-purecounter-start="0" data-purecounter-end="25" data-purecounter-delay="200">0</h5>
</div>
<span class="mb-0 h6 fw-light">Total Courses</span>
</div>
</div>
</div>
<!-- Counter item -->
<div class="col-sm-6 col-lg-4">
<div class="d-flex justify-content-center align-items-center p-4 bg-purple bg-opacity-10 rounded-3">
<span class="display-6 text-purple mb-0"><i class="fas fa-user-graduate fa-fw"></i></span>
<div class="ms-4">
<div class="d-flex">
<h5 class="purecounter mb-0 fw-bold" data-purecounter-start="0" data-purecounter-end="25" data-purecounter-delay="200">0</h5>
<span class="mb-0 h5">K+</span>
</div>
<span class="mb-0 h6 fw-light">Total Students</span>
</div>
</div>
</div>
<!-- Counter item -->
<div class="col-sm-6 col-lg-4">
<div class="d-flex justify-content-center align-items-center p-4 bg-info bg-opacity-10 rounded-3">
<span class="display-6 text-info mb-0"><i class="fas fa-gem fa-fw"></i></span>
<div class="ms-4">
<div class="d-flex">
<h5 class="purecounter mb-0 fw-bold" data-purecounter-start="0" data-purecounter-end="12" data-purecounter-delay="300">0</h5>
<span class="mb-0 h5">K</span>
</div>
<span class="mb-0 h6 fw-light">Enrolled Students</span>
</div>
</div>
</div>
</div>
<!-- Counter boxes END -->
<!-- Chart START -->
<div class="row mt-5">
<div class="col-12">
<div class="card card-body border p-4 h-100">
<div class="row g-4">
<!-- Content -->
<div class="col-sm-6 col-md-4">
<span class="badge bg-dark text-white">Current Month</span>
<h4 class="text-primary my-2">$35000</h4>
<p class="mb-0"><span class="text-success me-1">0.20%<i class="bi bi-arrow-up"></i></span>vs last month</p>
</div>
<!-- Content -->
<div class="col-sm-6 col-md-4">
<span class="badge bg-dark text-white">Last Month</span>
<h4 class="my-2">$28000</h4>
<p class="mb-0"><span class="text-danger me-1">0.10%<i class="bi bi-arrow-down"></i></span>Then last month</p>
</div>
</div>
<!-- Apex chart -->
<div id="ChartPayout"></div>
</div>
</div>
</div>
<!-- Chart END -->
<!-- Course List table START -->
<div class="row">
<div class="col-12">
<div class="card border rounded-3 mt-5">
<!-- Card header START -->
<div class="card-header border-bottom">
<div class="d-sm-flex justify-content-sm-between align-items-center">
<h3 class="mb-2 mb-sm-0">Most Selling Courses</h3>
<a href="#" class="btn btn-sm btn-primary-soft mb-0">View all</a>
</div>
</div>
<!-- Card header END -->
<!-- Card body START -->
<div class="card-body">
<div class="table-responsive-lg border-0 rounded-3">
<!-- Table START -->
<table class="table table-dark-gray align-middle p-4 mb-0">
<!-- Table head -->
<thead>
<tr>
<th scope="col" class="border-0 rounded-start">Course Name</th>
<th scope="col" class="border-0">Selling</th>
<th scope="col" class="border-0">Amount</th>
<th scope="col" class="border-0">Period</th>
<th scope="col" class="border-0 rounded-end">Action</th>
</tr>
</thead>
<!-- Table body START -->
<tbody>
<!-- Table item -->
<tr>
<!-- Course item -->
<td>
<div class="d-flex align-items-center">
<!-- Image -->
<div class="w-100px w-md-60px">
<img src="assets/images/courses/4by3/08.jpg" class="rounded" alt="">
</div>
<!-- Title -->
<h6 class="mb-0 ms-2">
<a href="#">Building Scalable APIs with GraphQL</a>
</h6>
</div>
</td>
<!-- Selling item -->
<td>34</td>
<!-- Amount item -->
<td>$1,25,478</td>
<!-- Period item -->
<td>
<span class="badge bg-primary bg-opacity-10 text-primary">9 months</span>
</td>
<!-- Action item -->
<td>
<a href="#" class="btn btn-sm btn-success-soft btn-round me-1 mb-0"><i class="far fa-fw fa-edit"></i></a>
<button class="btn btn-sm btn-danger-soft btn-round mb-0"><i class="fas fa-fw fa-times"></i></button>
</td>
</tr>
<!-- Table item -->
<tr>
<!-- Course item -->
<td>
<div class="d-flex align-items-center">
<!-- Image -->
<div class="w-100px w-md-60px">
<img src="assets/images/courses/4by3/10.jpg" class="rounded" alt="">
</div>
<!-- Title -->
<h6 class="mb-0 ms-2">
<a href="#">Bootstrap 5 From Scratch</a>
</h6>
</div>
</td>
<!-- Selling item -->
<td>45</td>
<!-- Amount item -->
<td>$2,85,478</td>
<!-- Period item -->
<td>
<span class="badge bg-primary bg-opacity-10 text-primary">6 months</span>
</td>
<!-- Action item -->
<td>
<a href="#" class="btn btn-sm btn-success-soft btn-round me-1 mb-0"><i class="far fa-fw fa-edit"></i></a>
<button class="btn btn-sm btn-danger-soft btn-round mb-0"><i class="fas fa-fw fa-times"></i></button>
</td>
</tr>
<!-- Table item -->
<tr>
<!-- Course item -->
<td>
<div class="d-flex align-items-center">
<!-- Image -->
<div class="w-100px w-md-60px">
<img src="assets/images/courses/4by3/02.jpg" class="rounded" alt="">
</div>
<!-- Title -->
<h6 class="mb-0 ms-2">
<a href="#">Graphic Design Masterclass</a>
</h6>
</div>
</td>
<!-- Selling item -->
<td>21</td>
<!-- Amount item -->
<td>$85,478</td>
<!-- Period item -->
<td>
<span class="badge bg-primary bg-opacity-10 text-primary">4 months</span>
</td>
<!-- Action item -->
<td>
<a href="#" class="btn btn-sm btn-success-soft btn-round me-1 mb-0"><i class="far fa-fw fa-edit"></i></a>
<button class="btn btn-sm btn-danger-soft btn-round mb-0"><i class="fas fa-fw fa-times"></i></button>
</td>
</tr>
<!-- Table item -->
<tr>
<!-- Course item -->
<td>
<div class="d-flex align-items-center">
<!-- Image -->
<div class="w-100px w-md-60px">
<img src="assets/images/courses/4by3/04.jpg" class="rounded" alt="">
</div>
<!-- Title -->
<h6 class="mb-0 ms-2">
<a href="#">Learn Invision</a>
</h6>
</div>
</td>
<!-- Selling item -->
<td>28</td>
<!-- Amount item -->
<td>$98,478</td>
<!-- Period item -->
<td>
<span class="badge bg-primary bg-opacity-10 text-primary">8 months</span>
</td>
<!-- Action item -->
<td>
<a href="#" class="btn btn-sm btn-success-soft btn-round me-1 mb-0"><i class="far fa-fw fa-edit"></i></a>
<button class="btn btn-sm btn-danger-soft btn-round mb-0"><i class="fas fa-fw fa-times"></i></button>
</td>
</tr>
<!-- Table item -->
<tr>
<!-- Course item -->
<td>
<div class="d-flex align-items-center">
<!-- Image -->
<div class="w-100px w-md-60px">
<img src="assets/images/courses/4by3/06.jpg" class="rounded" alt="">
</div>
<!-- Title -->
<h6 class="mb-0 ms-2">
<a href="#">Angular – The Complete Guider</a>
</h6>
</div>
</td>
<!-- Selling item -->
<td>38</td>
<!-- Amount item -->
<td>$1,02,478</td>
<!-- Period item -->
<td>
<span class="badge bg-primary bg-opacity-10 text-primary">1 year</span>
</td>
<!-- Action item -->
<td>
<a href="#" class="btn btn-sm btn-success-soft btn-round me-1 mb-0"><i class="far fa-fw fa-edit"></i></a>
<button class="btn btn-sm btn-danger-soft btn-round mb-0"><i class="fas fa-fw fa-times"></i></button>
</td>
</tr>
</tbody>
<!-- Table body END -->
</table>
<!-- Table END -->
</div>
<!-- Pagination -->
<div class="d-sm-flex justify-content-sm-between align-items-sm-center mt-3">
<!-- Content -->
<p class="mb-0 text-center text-sm-start">Showing 1 to 8 of 20 entries</p>
<!-- Pagination -->
<nav class="d-flex justify-content-center mb-0" aria-label="navigation">
<ul class="pagination pagination-sm pagination-primary-soft mb-0 pb-0">
<li class="page-item mb-0"><a class="page-link" href="#" tabindex="-1"><i class="fas fa-angle-left"></i></a></li>
<li class="page-item mb-0"><a class="page-link" href="#">1</a></li>
<li class="page-item mb-0 active"><a class="page-link" href="#">2</a></li>
<li class="page-item mb-0"><a class="page-link" href="#">3</a></li>
<li class="page-item mb-0"><a class="page-link" href="#"><i class="fas fa-angle-right"></i></a></li>
</ul>
</nav>
</div>
</div>
<!-- Card body START -->
</div>
</div>
</div>
<!-- Course List table END -->
</div>
<!-- Main content END -->
</div><!-- Row END -->
</div>
</section>
<!-- =======================
Page content END -->
</main>
<!-- **************** MAIN CONTENT END **************** -->
<!-- =======================
Footer START -->
<footer class="bg-dark p-3">
<div class="container">
<div class="row align-items-center">
<!-- Widget -->
<div class="col-md-4 text-center text-md-start mb-3 mb-md-0">
<!-- Logo START -->
<a href="index.html"> <img class="h-20px" src="assets/images/logo-light.svg" alt="logo"> </a>
</div>
<!-- Widget -->
<div class="col-md-4 mb-3 mb-md-0">
<div class="text-center text-white">
Copyrights ©2021 <a href="#" class="text-reset btn-link">Eduport</a>. All rights reserved.
</div>
</div>
<!-- Widget -->
<div class="col-md-4">
<!-- Rating -->
<ul class="list-inline mb-0 text-center text-md-end">
<li class="list-inline-item ms-2"><a href="#"><i class="text-white fab fa-facebook"></i></a></li>
<li class="list-inline-item ms-2"><a href="#"><i class="text-white fab fa-instagram"></i></a></li>
<li class="list-inline-item ms-2"><a href="#"><i class="text-white fab fa-linkedin-in"></i></a></li>
<li class="list-inline-item ms-2"><a href="#"><i class="text-white fab fa-twitter"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- =======================
Footer END -->
<!-- Back to top -->
<div class="back-top"><i class="bi bi-arrow-up-short position-absolute top-50 start-50 translate-middle"></i></div>
<!-- Bootstrap JS -->
<script src="assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<!-- Vendors -->
<script src="assets/vendor/purecounterjs/dist/purecounter_vanilla.js"></script>
<script src="assets/vendor/apexcharts/js/apexcharts.min.js"></script>
<!-- Template Functions -->
<script src="assets/js/functions.js"></script>
</body>
</html>