-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstudent-subscription.html
729 lines (713 loc) · 51.8 KB
/
student-subscription.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
<!DOCTYPE html>
<html lang="en" data-bs-theme="light">
<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="description" content="Eduport- LMS, Education and Course Theme">
<!-- Favicon -->
<!-- <link rel="shortcut icon" href="favicon.ico"> -->
<link rel="icon" href="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="css/all.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="css/tiny-slider.css">
<link rel="stylesheet" type="text/css" href="css/glightbox.css">
<!-- Theme CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-F48KSYBVL7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-F48KSYBVL7');
</script>
</head>
<body>
<!-- Header START -->
<header class="navbar-light navbar-sticky">
<!-- Nav START -->
<nav class="navbar navbar-expand-xl z-index-9">
<div class="container">
<!-- Logo START -->
<a class="navbar-brand" style="margin-left: -30px;" href="index.html">
<img class="light-mode-item navbar-brand-item" src="images/logo-light.png" alt="logo">
<img class="dark-mode-item navbar-brand-item" src="images/logo-dark.png" 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 collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<!-- Nav item 1 Demos -->
<li class="nav-item dropdown dropdown-menu-shadow-stacked">
<a class="nav-link bg-primary bg-opacity-10 rounded-3 text-primary px-3 py-3 py-xl-0" href="#" id="categoryMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="bi bi-ui-radios-grid me-2"></i>
<span>Category</span>
</a>
<ul class="dropdown-menu" aria-labelledby="categoryMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Development</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="#">Web Development</a>
<ul class="dropdown-menu" data-bs-popper="none">
<li>
<a class="dropdown-item" href="#">CSS</a>
</li>
<li>
<a class="dropdown-item" href="#">JavaScript</a>
</li>
<li>
<a class="dropdown-item" href="#">Angular</a>
</li>
<li>
<a class="dropdown-item" href="#">PHP</a>
</li>
<li>
<a class="dropdown-item" href="#">HTML</a>
</li>
<li>
<a class="dropdown-item" href="#">React</a>
</li>
</ul>
</li>
<li>
<a class="dropdown-item" href="#">Data Science</a>
</li>
<li>
<a class="dropdown-item" href="#">Mobile Development</a>
</li>
<li>
<a class="dropdown-item" href="#">Programing Language</a>
</li>
<li>
<a class="dropdown-item" href="#">Software Testing</a>
</li>
<li>
<a class="dropdown-item" href="#">Software Engineering</a>
</li>
<li>
<a class="dropdown-item" href="#">Software Development Tools</a>
</li>
</ul>
</li>
<li>
<a class="dropdown-item" href="#">Design</a>
</li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Marketing</a>
<div class="dropdown-menu dropdown-menu-start dropdown-width-lg" data-bs-popper="none">
<div class="row p-4">
<!-- Dropdown column item -->
<div class="col-xl-6 col-xxl-4 mb-4 mb-xl-0">
<h6 class="mb-0">Get started</h6>
<hr>
<!-- Divider -->
<ul class="list-unstyled">
<li>
<a class="dropdown-item" href="#">Market Research</a>
</li>
<li>
<a class="dropdown-item" href="#">Advertising</a>
</li>
<li>
<a class="dropdown-item" href="#">Consumer Behavior</a>
</li>
<li>
<a class="dropdown-item" href="#">Digital Marketing</a>
</li>
<li>
<a class="dropdown-item" href="#">Marketing Ethics</a>
</li>
<li>
<a class="dropdown-item" href="#">Social Media Marketing</a>
</li>
<li>
<a class="dropdown-item" href="#">Public Relations</a>
</li>
<li>
<a class="dropdown-item" href="#">Advertising</a>
</li>
<li>
<a class="dropdown-item" href="#">Decision Science</a>
</li>
<li>
<a class="dropdown-item" href="#">SEO</a>
</li>
<li>
<a class="dropdown-item" href="#">Business Marketing</a>
</li>
</ul>
</div>
<!-- Dropdown column item -->
<div class="col-xl-6 col-xxl-4 mb-4 mb-xl-0">
<h6 class="mb-0">Degree</h6>
<hr>
<!-- Divider -->
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-01.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">American Century University, New Mexico</a>
<p class="mb-0 small">Bachelor of computer science</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-02.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">Indiana College of - Bloomington</a>
<p class="mb-0 small">Masters of computer science</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-03.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">College of South Florida</a>
<p class="mb-0 small">Medical science college</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-01.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">Andeerson Campus</a>
<p class="mb-0 small">Bachelor of computer science</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex position-relative">
<img src="fonts/uni-logo-04.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">University of South California</a>
<p class="mb-0 small">Masters of business development</p>
</div>
</div>
</div>
<!-- Dropdown column item -->
<div class="col-xl-6 col-xxl-4">
<h6 class="mb-0">Certificate</h6>
<hr>
<!-- Divider -->
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0">
<i class="fab fa-fw fa-google text-google-icon"></i>
</h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Google SEO certificate</a>
<p class="mb-0 small">No prerequisites</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0">
<i class="fab fa-fw fa-linkedin-in text-linkedin"></i>
</h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Business Development Executive(BDE)</a>
<p class="mb-0 small">No prerequisites</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0">
<i class="fab fa-fw fa-facebook text-facebook"></i>
</h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Facebook social media marketing</a>
<p class="mb-0 small">Expert advice</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0">
<i class="fas fa-fw fa-basketball-ball text-dribbble"></i>
</h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Creative graphics design</a>
<p class="mb-0 small">No prerequisites</p>
</div>
</div>
</div>
</div>
<!-- Advertisement -->
<div class="row">
<div class="col-12">
<div class="card bg-blue rounded-0 rounded-bottom p-3 position-relative overflow-hidden" style="background:url(images/05.png) no-repeat center center; background-size:cover;">
<!-- SVG decoration -->
<figure class="position-absolute bottom-0 end-0 mb-n4 d-none d-md-block">
<svg width="92.6px" height="135.2px">
<path class="fill-white" d="M71.5,131.4c0.2,0.1,0.4,0.1,0.6-0.1c0,0,0.6-0.7,1.6-1.9c0.2-0.2,0.1-0.5-0.1-0.7c-0.2-0.2-0.5-0.1-0.7,0.1 c-1,1.2-1.6,1.8-1.6,1.8c-0.2,0.2-0.2,0.5,0,0.7C71.4,131.3,71.4,131.4,71.5,131.4z"/>
<path class="fill-white" d="M76,125.5c-0.2-0.2-0.3-0.5-0.1-0.7c1-1.4,1.9-2.8,2.8-4.2c0.1-0.2,0.4-0.3,0.7-0.2c0.2,0.1,0.3,0.4,0.2,0.7 c-0.9,1.4-1.8,2.9-2.8,4.2C76.6,125.6,76.3,125.6,76,125.5C76.1,125.5,76.1,125.5,76,125.5z M81.4,116.9 c-0.2-0.1-0.3-0.4-0.2-0.7c0.2-0.5,0.5-0.9,0.7-1.4c0.5-1.1,1-2.1,1.5-3.2c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6 c-0.5,1.1-1,2.1-1.5,3.2c-0.2,0.5-0.5,0.9-0.7,1.4C81.9,117,81.6,117,81.4,116.9C81.4,116.9,81.4,116.9,81.4,116.9z M85.1,107.1 c0.5-1.6,1-3.2,1.3-4.8c0.1-0.3,0.3-0.4,0.6-0.4c0.3,0.1,0.4,0.3,0.4,0.6c-0.4,1.6-0.8,3.3-1.3,4.9c-0.1,0.3-0.4,0.4-0.6,0.3 c0,0,0,0-0.1,0C85.1,107.6,85,107.3,85.1,107.1z M47.3,83c-1.5-1.1-2.5-2.5-3.1-4.2c-0.1-0.3,0-0.5,0.3-0.6 c0.3-0.1,0.5,0,0.6,0.3c0.5,1.5,1.5,2.7,2.8,3.7c0.2,0.2,0.3,0.5,0.1,0.7C47.9,83.1,47.6,83.1,47.3,83C47.4,83,47.4,83,47.3,83z M51.7,84.6c0-0.3,0.3-0.5,0.5-0.4c1.4,0.2,2.9-0.3,4.3-1.4c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7 c-1.6,1.2-3.4,1.8-5,1.6c-0.1,0-0.1,0-0.2,0C51.8,85,51.7,84.8,51.7,84.6z M87.2,97.4c0.2-1.7,0.2-3.3,0.2-5 c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0.1,1.7,0,3.4-0.2,5.1c0,0.3-0.3,0.5-0.5,0.4c-0.1,0-0.1,0-0.2,0 C87.3,97.8,87.1,97.6,87.2,97.4z M43.7,73.6c0.2-1.6,0.7-3.2,1.5-4.8l0.1-0.1c0.1-0.2,0.4-0.3,0.7-0.2c0,0,0,0,0,0 c0.2,0.1,0.3,0.4,0.2,0.7l-0.1,0.1c-0.7,1.5-1.2,3-1.4,4.5c0,0.3-0.3,0.5-0.6,0.4c-0.1,0-0.1,0-0.2,0 C43.8,74,43.7,73.8,43.7,73.6z M60,79.8c-0.2-0.1-0.3-0.5-0.1-0.7c0.4-0.6,0.8-1.3,1.1-2c0.4-0.8,0.7-1.6,1-2.4 c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-0.3,0.9-0.7,1.7-1.1,2.5c-0.4,0.7-0.8,1.4-1.2,2.1C60.5,79.9,60.2,80,60,79.8 C60,79.9,60,79.8,60,79.8z M86.8,87.5c-0.3-1.6-0.7-3.2-1.2-4.8c-0.1-0.3,0.1-0.5,0.3-0.6c0.3-0.1,0.5,0.1,0.6,0.3 c0.5,1.6,1,3.3,1.2,4.9c0,0.3-0.1,0.5-0.4,0.6c-0.1,0-0.2,0-0.3,0C87,87.7,86.9,87.6,86.8,87.5z M48.2,65.1 c-0.2-0.2-0.2-0.5,0-0.7c1.2-1.3,2.5-2.4,3.9-3.4c0.2-0.1,0.5-0.1,0.7,0.1c0.1,0.2,0.1,0.5-0.1,0.7c-1.4,0.9-2.6,2-3.7,3.2 c-0.2,0.2-0.4,0.2-0.6,0.1C48.3,65.2,48.3,65.1,48.2,65.1z M63.3,70c0.3-1.6,0.5-3.3,0.5-4.9c0-0.3,0.2-0.5,0.5-0.5 c0.3,0,0.5,0.2,0.5,0.5c-0.1,1.7-0.2,3.4-0.5,5.1c0,0.3-0.3,0.4-0.6,0.4c0,0-0.1,0-0.1,0C63.3,70.4,63.2,70.2,63.3,70z M83.8,78 c-0.7-1.5-1.5-3-2.4-4.3c-0.1-0.2-0.1-0.5,0.1-0.7c0.2-0.1,0.5-0.1,0.7,0.2c0.9,1.4,1.7,2.9,2.5,4.4c0.1,0.2,0,0.5-0.2,0.7 c-0.1,0.1-0.3,0.1-0.4,0C83.9,78.2,83.8,78.1,83.8,78z M56.5,59.6c-0.1-0.3,0.1-0.5,0.4-0.6c1.7-0.4,3.4-0.5,5.2-0.3 c0.3,0,0.5,0.3,0.4,0.5c0,0.3-0.3,0.5-0.5,0.4c-1.7-0.2-3.3-0.1-4.8,0.3c-0.1,0-0.2,0-0.3,0C56.6,59.8,56.5,59.7,56.5,59.6z M78.4,69.7c-1.1-1.3-2.2-2.5-3.4-3.6c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0c1.2,1.1,2.4,2.4,3.5,3.7 c0.2,0.2,0.1,0.5-0.1,0.7c-0.2,0.1-0.4,0.1-0.5,0.1C78.5,69.8,78.4,69.7,78.4,69.7z M63.6,60.1c-0.2-1.6-0.4-3.3-0.8-4.9 c-0.1-0.3,0.1-0.5,0.4-0.6c0.3-0.1,0.5,0.1,0.6,0.4c0.4,1.7,0.7,3.4,0.8,5c0,0.3-0.2,0.5-0.4,0.5c-0.1,0-0.2,0-0.3,0 C63.7,60.4,63.6,60.2,63.6,60.1z M71,63.1c-1.4-0.9-2.9-1.7-4.4-2.3c-0.3-0.1-0.4-0.4-0.3-0.6c0.1-0.3,0.4-0.4,0.6-0.3 c1.5,0.6,3.1,1.4,4.6,2.3c0.2,0.1,0.3,0.5,0.1,0.7C71.6,63.1,71.3,63.2,71,63.1C71.1,63.1,71.1,63.1,71,63.1z M61.3,50.4 c-0.6-1.5-1.3-3-2.1-4.5c-0.1-0.2-0.1-0.5,0.2-0.7c0.2-0.1,0.5-0.1,0.7,0.2c0.9,1.5,1.6,3.1,2.2,4.6c0.1,0.3,0,0.5-0.3,0.6 c-0.1,0.1-0.3,0-0.4,0C61.5,50.6,61.4,50.5,61.3,50.4z M56.5,41.8c-1-1.3-2.1-2.6-3.2-3.8c-0.2-0.2-0.2-0.5,0-0.7 c0.2-0.2,0.5-0.2,0.7,0c1.2,1.3,2.3,2.6,3.3,3.9c0.2,0.2,0.1,0.5-0.1,0.7c-0.2,0.1-0.4,0.1-0.5,0C56.6,41.9,56.5,41.8,56.5,41.8z M49.7,34.5c-1.2-1.1-2.5-2.1-3.9-3.2c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c1.4,1,2.7,2.1,3.9,3.2 c0.2,0.2,0.2,0.5,0,0.7c-0.2,0.2-0.4,0.2-0.6,0.1C49.7,34.6,49.7,34.5,49.7,34.5z M41.7,28.5c-1.4-0.9-2.8-1.8-4.3-2.6 c-0.2-0.1-0.3-0.4-0.2-0.7c0.1-0.2,0.4-0.3,0.7-0.2c1.5,0.8,2.9,1.7,4.3,2.6c0.2,0.1,0.3,0.5,0.1,0.7 C42.2,28.6,42,28.6,41.7,28.5C41.7,28.5,41.7,28.5,41.7,28.5z"/>
<path class="fill-white" d="M30.7,22.6C30.7,22.6,30.7,22.6,30.7,22.6c0,0,0.9,0.4,2.3,1c0.2,0.1,0.5,0,0.7-0.2c0.1-0.2,0-0.5-0.2-0.7 c0,0,0,0,0,0c-1.4-0.7-2.2-1-2.3-1c-0.3-0.1-0.5,0-0.6,0.3C30.3,22.2,30.4,22.5,30.7,22.6z"/>
<path class="fill-warning" d="M22.6,23.6l-1.1-4.1c0,0-11.7-7.5-11.9-7.6c-0.1-0.2-4.9-6.5-4.9-6.5l8.2,3.5l12.2,8.4L22.6,23.6z"/>
<polygon class="fill-warning opacity-6" points="31.2,12.3 4.7,5.4 25.1,17.2"/>
<polygon class="fill-warning opacity-6" points="21.5,19.5 15,24.8 4.7,5.4 "/>
</svg>
</figure>
Body
<div class="card-body">
<!-- Title -->
<h5 class="card-title text-white mb-2">Access 25K Online courses from 120 institutions, Start today!</h5>
<p class="text-white text-opacity-75">Here is the description of premium features which will allow users to get benefits and save a lot of money</p>
<!-- Button -->
<a href="#" class="btn btn-sm btn-dark mb-0">Purchase Premium</a>
</div>
</div>
</div>
</div>
</div>
</li>
<li>
<a class="dropdown-item" href="#">Music</a>
</li>
<li>
<a class="dropdown-item" href="#">Lifestyle</a>
</li>
<li>
<a class="dropdown-item" href="#">IT &software</a>
</li>
<li>
<a class="dropdown-item" href="#">Personal development</a>
</li>
<li>
<a class="dropdown-item" href="#">Health &fitness</a>
</li>
<li>
<a class="dropdown-item" href="#">Teaching</a>
</li>
<li>
<a class="dropdown-item" href="#">Social science</a>
</li>
<li>
<a class="dropdown-item" href="#">Math &logic</a>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li>
<a class="dropdown-item bg-primary text-primary bg-opacity-10 rounded-2 mb-0" href="course-categories.html">View all categories</a>
</li>
</ul>
</li>
</ul>
<!-- Nav category menu END -->
<!-- Nav Search START -->
<div class="col-xl-7">
<div class="nav my-3 my-xl-0 px-4 flex-nowrap align-items-center">
<div class="nav-item w-100">
<form id="searchForm" class="rounded position-relative" action="course-grid.html">
<input id="searchInput" class="form-control pe-5 bg-secondary bg-opacity-10 border-1" type="search" name="search" placeholder="Search" aria-label="Search">
<button id="searchButton" class="btn btn-link bg-transparent px-2 py-0 position-absolute top-50 end-0 translate-middle-y" type="submit">
<i class="fas fa-search fs-6 text-primary"></i>
</button>
</form>
</div>
</div>
</div>
<!-- Nav Search END -->
<!-- Nav Main menu START -->
<ul class="navbar-nav navbar-nav-scroll me-auto">
</ul>
<!-- Nav Main menu END -->
</div>
<!-- Main navbar END -->
<!-- Profile and notification START -->
<ul class="nav flex-row align-items-center list-unstyled ms-xl-auto">
<!-- Wishlist START -->
<li class="nav-item ms-0 mx-2 ms-sm-2 d-none d-sm-block">
<a class="btn btn-light btn-round mb-0" href="wishlist.html"> <i class="bi bi-heart fa-fw"></i></a>
<span class="position-absolute mx-3 translate-middle badge rounded-circle bg-danger mt-xl-2 ms-n1" id="wishlistCount">
0
<span class="visually-hidden">unread messages</span>
</span>
</li>
<!-- Dark mode options START -->
<div class="dropdown">
<button class="btn btn-light btn-sm lh-1 p-2 mb-0" id="bd-theme"
type="button"
aria-expanded="false"
data-bs-toggle="dropdown"
data-bs-display="static">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" class="bi bi-circle-half fa-fw theme-icon-active" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"/>
<use href="#"></use>
</svg>
</button>
<ul class="dropdown-menu min-w-auto dropdown-menu-end" aria-labelledby="bd-theme">
<li class="mb-1">
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light">
<svg width="16" height="16" fill="currentColor" class="bi bi-brightness-high-fill fa-fw mode-switch me-1" viewBox="0 0 16 16">
<path d="M12 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"/>
<use href="#"></use>
</svg>Light
</button>
</li>
<li class="mb-1">
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="dark">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-moon-stars-fill fa-fw mode-switch me-1" viewBox="0 0 16 16">
<path d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z"/>
<path d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z"/>
<use href="#"></use>
</svg>Dark
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center active" data-bs-theme-value="auto">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-circle-half fa-fw mode-switch me-1" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"/>
<use href="#"></use>
</svg>Auto
</button>
</li>
</ul>
</div>
<!-- Dark mode options END -->
<!-- Wishlist END -->
<!-- Add to cart START -->
<li class="nav-item ms-2 dropdown ">
<!-- Cart button -->
<a class="btn btn-light btn-round mb-0" role="button" data-bs-toggle="dropdown" aria-expanded="false" data-bs-auto-close="outside">
<i class="bi bi-cart3 fa-fw"></i>
</a>
<!-- badge -->
<span class="position-absolute top-0 start-100 translate-middle badge rounded-circle bg-dark mt-xl-2 ms-n1" id="cartCount">
0
<span class="visually-hidden">unread messages</span>
</span>
<!-- Cart dropdown menu START -->
<div class="dropdown-menu dropdown-animation dropdown-menu-end dropdown-menu-size-md p-0 shadow-lg border-0 scrollable-container">
<div class="card bg-transparent">
<div class="card-header bg-transparent border-bottom py-4">
<h5 class="m-0">Cart items</h5>
</div>
<!-- Cart Item display using the cart-list id -->
<div class="card-body p-0" id="cart-list">
<!-- Divider -->
<hr class="m-0">
<!-- Cart item END -->
</div>
<!-- Button -->
<div class="card-footer bg-transparent border-top py-3 text-center d-flex justify-content-between position-relative">
<a href="cart.html" class="btn btn-sm btn-light mb-0">View Cart</a>
<a href="checkout.html" class="btn btn-sm btn-success mb-0">Checkout</a>
</div>
</div>
</div>
<!-- Cart dropdown menu END -->
</li>
<!-- Add to cart END -->
<!-- Auth Start -->
<!-- Signin button -->
<!-- <div class="navbar-nav ms-3 d-none d-sm-block">
<button class="btn btn-sm btn-dark mb-0">Buy now</button>
</div> -->
<li id="LoginScreen">
<button id="login" class="btn btn-sm btn-dark mb-0 mx-3">Login</button>
</li>
<!-- Notification dropdown END -->
<!-- Profile dropdown START -->
<li id="dashboard">
<li id="userDetails">
</li>
<li id="logout">Logout</li>
</li>
<!-- Auth End here -->
</ul>
<!-- Profile and notification END -->
</div>
</nav>
<!-- Nav END -->
</header>
<!-- Header END -->
<!-- **************** MAIN CONTENT START **************** -->
<main>
<!-- =======================
Page Banner START -->
<section class="pt-0" >
<div class="container-fluid px-0">
<div class="card bg-blue h-100px h-md-200px rounded-0" style="background:url(images/04.png) no-repeat center center; background-size:cover;"></div>
</div>
<div class="container mt-n4">
<div class="row">
<div class="col-12" id="studentDashboard">
</div>
</div>
</div>
</section>
<!-- =======================
Page Banner END -->
<!-- =======================
Page content START -->
<section class="pt-0">
<div class="container">
<div class="row">
<!-- Left sidebar START -->
<div class="col-xl-3">
<!-- Responsive offcanvas body START -->
<div class="offcanvas-xl offcanvas-end" tabindex="-1" id="offcanvasSidebar">
<!-- Offcanvas header -->
<div class="offcanvas-header bg-light">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">My profile</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#offcanvasSidebar" aria-label="Close"></button>
</div>
<!-- Offcanvas body -->
<div class="offcanvas-body p-3 p-xl-0">
<div class="bg-dark border rounded-3 p-3 w-100">
<!-- Dashboard menu -->
<div class="list-group list-group-dark list-group-borderless collapse-list">
<a class="list-group-item" href="student-dashboard.html">
<i class="bi bi-ui-checks-grid fa-fw me-2"></i>
Dashboard
</a>
<a class="list-group-item active" href="student-subscription.html">
<i class="bi bi-card-checklist fa-fw me-2"></i>
My Subscriptions
</a>
<a class="list-group-item" href="student-course-list.html">
<i class="bi bi-basket fa-fw me-2"></i>
My Courses
</a>
<a class="list-group-item" href="student-course-resume.html">
<i class="far fa-fw fa-file-alt me-2"></i>
Course Resume
</a>
<a class="list-group-item" href="student-quiz.html">
<i class="bi bi-question-diamond fa-fw me-2"></i>
Quiz
</a>
<a class="list-group-item" href="student-payment-info.html">
<i class="bi bi-credit-card-2-front fa-fw me-2"></i>
Payment Info
</a>
<a class="list-group-item" href="student-bookmark.html">
<i class="bi bi-cart-check fa-fw me-2"></i>
Wishlist
</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-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="#">
<i class="fas fa-sign-out-alt fa-fw me-2"></i>
Sign Out
</a>
<!-- Collapse menu -->
<a class="list-group-item" data-bs-toggle="collapse" href="#collapseauthentication" role="button" aria-expanded="false" aria-controls="collapseauthentication">
<i class="bi bi-lock fa-fw me-2"></i>
Dropdown level
</a>
<!-- Submenu -->
<ul class="nav collapse flex-column" id="collapseauthentication" data-bs-parent="#navbar-sidebar">
<li class="nav-item">
<a class="nav-link" href="#">Dropdown item</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Dropdown item</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Responsive offcanvas body END -->
</div>
<!-- Left sidebar END -->
<!-- Main content START -->
<div class="col-xl-9">
<div class="card card-body bg-transparent border rounded-3">
<!-- Update plan START -->
<div class="row g-4">
<!-- Update plan item -->
<div class="col-6 col-lg-3">
<span>Active Plan</span>
<h4>Basic</h4>
</div>
<!-- Update plan item -->
<div class="col-6 col-lg-3">
<span>Monthly limit</span>
<h4>Unlimited</h4>
</div>
<!-- Update plan item -->
<div class="col-6 col-lg-3">
<span>Cost</span>
<h4>$99/Month</h4>
</div>
<!-- Update plan item -->
<div class="col-6 col-lg-3">
<span>Renewal Date</span>
<h4>Feb 17, 2023</h4>
</div>
</div>
<!-- Update plan END -->
<!-- Progress bar -->
<div class="overflow-hidden my-4">
<h6 class="mb-0">85%</h6>
<div class="progress progress-sm bg-primary bg-opacity-10">
<div class="progress-bar bg-primary aos" role="progressbar" data-aos="slide-right" data-aos-delay="200" data-aos-duration="1000" data-aos-easing="ease-in-out" style="width: 85%" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<!-- Button -->
<div class="d-sm-flex justify-content-sm-between align-items-center">
<div>
<!-- Switch Content -->
<div class="d-sm-flex">
<div class="form-check form-switch form-check-md">
<input class="form-check-input" type="checkbox" id="checkPrivacy1" checked="">
<label class="form-check-label" for="checkPrivacy1">Auto Renewal</label>
</div>
</div>
<p class="mb-0 small">Your plan will automatically renew on: 02/17/2023. Payment Amount: USD250</p>
</div>
<!-- Buttons -->
<div class="mt-2 mt-sm-0">
<button type="button" class="btn btn-sm btn-danger-soft me-2 mb-0">Cancel plan</button>
<a href="#" class="btn btn-sm btn-success mb-0">Upgrade plan</a>
</div>
</div>
<!-- Divider -->
<hr>
<!-- Plan Benefits -->
<div class="row">
<h6 class="mb-3">The plan includes</h6>
<div class="col-md-6">
<ul class="list-unstyled">
<li class="mb-3 h6 fw-light">
<i class="bi bi-patch-check-fill text-success me-2"></i>
Up to 05 users monthly
</li>
<li class="mb-3 h6 fw-light">
<i class="bi bi-patch-check-fill text-success me-2"></i>
Free 5 host &domain
</li>
<li class="mb-3 h6 fw-light">
<i class="bi bi-patch-check-fill text-success me-2"></i>
Custom infrastructure
</li>
<li class="mb-3 h6 fw-light">
<i class="bi bi-patch-check-fill text-success me-2"></i>
Access to all our room
</li>
</ul>
</div>
<div class="col-md-6">
<ul class="list-unstyled">
<li class="mb-3 h6 fw-light">
<i class="bi bi-patch-check-fill text-success me-2"></i>
24/7 dedicated Support
</li>
<li class="mb-3 h6 fw-light">
<i class="bi bi-patch-check-fill text-success me-2"></i>
Unlimited updates
</li>
<li class="h6 fw-light">
<i class="bi bi-patch-check-fill text-success me-2"></i>
Landing pages &Web widgets
</li>
</ul>
</div>
</div>
</div>
</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="images/logo-dark.png" alt="logo">
</a>
</div>
<!-- Widget -->
<div class="col-md-4 mb-3 mb-md-0">
<div class="text-center text-white">Copyrights ©<script>
document.write(new Date().getFullYear())
</script> <a href="index.html"target="_blank"" 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>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.0.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-auth.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="js/authentication.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.bundle.min.js"></script>
<!-- Vendors -->
<script src="js/tiny-slider.js"></script>
<script src="js/glightbox.js"></script>
<script src="js/purecounter_vanilla.js"></script>
<script src="js/functions.js"></script>
<script src="js/script.js"></script>
<script src="js/authentication.js"></script>
<!-- <script src="js/search.js"></script> -->
<script src="js/cart.js"></script>
<script src="js/checkout.js"></script>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script src="js/trendingCourses.js"></script>
<script src="js/course-detail-array.js"></script>
<script src="js/wishlist.js"></script>
<script src="js/wishCount.js"></script>
<script src="js/studentDashboard.js"></script>
</body>
</html>