-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (151 loc) · 5.82 KB
/
index.html
File metadata and controls
177 lines (151 loc) · 5.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.css"
integrity="sha256-piqEf7Ap7CMps8krDQsSOTZgF+MU/0MPyPW2enj5I40=" crossorigin="anonymous" />
<!-- Scrollbar Custom CSS -->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<title>StudyDuniya</title>
</head>
<body>
<!-- START HERE -->
<div class="wrapper">
<!-- Sidebar -->
<nav id="sidebar">
<div class="sidebar-header">
<a href="./index.html">
<h3>StudyDuniya</h3>
</a>
<strong>SD</strong>
</div>
<div class="profile">
<i class="fas fa-6x fa-user-circle"></i>
<h4>John Doe</h4>
</div>
<ul class=" components">
<li>
<a href="./assets/pages/dashboard.html">
<i class="fas fa-tachometer-alt"></i>
Dashboard
</a>
</li>
<li>
<a href="./assets/pages/courses.html">
<i class="fas fa-copyright"></i>
Courses
</a>
</li>
<li>
<a href="#pageSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-bookmark"></i>
Course Material
</a>
<ul class="collapse list-unstyled" id="pageSubmenu">
<li class="active">
<a href="./assets/pages/subjects.html">
<i class="fab fa-stripe-s"></i>
Subjects
</a>
</li>
<li>
<a href="./assets/pages/chapter.html">
<i class="fas fa-paperclip"></i>
Chapters
</a>
</li>
<li>
<a href="./assets/pages/ebooks.html">
<i class="fas fa-book-open"></i>
Ebooks
</a>
</li>
<li>
<a href="./assets/pages/videos.html"">
<i class=" fas fa-play-circle"></i>
Video Lecture
</a>
</li>
<li>
<a href="./assets/pages/mcq.html">
<i class="fas fa-check-circle"></i>
MCQs
</a>
</li>
</ul>
</li>
<li>
<a href="./assets/pages/users.html">
<i class="fas fa-user"></i>
Users
</a>
</li>
<li>
<a href="#">
<i class="fas fa-cog"></i>
Settings
</a>
</li>
<li>
<a href="./assets/pages/login.html" class="logoutbtn">
<i class="fas fa-sign-out-alt"></i>
Log Out
</a>
</li>
</ul>
</nav>
<!-- Page Content -->
<div id="content">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<button type="button" id="sidebarCollapse" class="btn btn-light">
<i class="fas fa-align-left"></i>
</button>
<h4>Main Page</h4>
<button class="btn btn-dark d-inline-block d-lg-none ml-auto" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<i class="fas fa-align-justify"></i>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<form class="form-inline ml-auto">
<input type="text" class="form-control mr-2" id="searchbar"
placeholder="Search for posts, exams & users..">
</form>
</div>
</div>
</nav>
<div class="content-body">
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.concat.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.concat.min.js"></script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/6.6.2/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/6.6.1/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.0.0/firebase-auth.js"></script>
<script src="./assets/script/firebaseconfig.js"></script>
<script src="./assets/script/app.js"></script>
<script>
window.location.href = './assets/pages/dashboard.html';
</script>
</body>
</html>