-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtutorials.html
More file actions
242 lines (236 loc) · 10.4 KB
/
tutorials.html
File metadata and controls
242 lines (236 loc) · 10.4 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
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
<!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" />
<meta name="author" content="DSC FUTA" />
<meta name="description" content="Developer Student Clubs (DSC)a is a Google Developers program for university students to learn mobile and web development skills."/>
<meta name="keywords" content="dsc, futa, kelvin kamau,google developers, sub saharan africa, kenya, computer science"/>
<title>DSC Admin - Materials</title>
<link rel="icon" href="images/icon.png" type="image/png" />
<!-- Temporarily left here because of the main content -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css"/>
<link href="vendor/datatables/dataTables.bootstrap4.min.css" rel="stylesheet"/>
<link href="css/admin.css" rel="stylesheet" />
<!-- the above are Temporarily left here because of the main content -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="mdc-typography">
<header class="mdc-top-app-bar mdc-top-app-bar--fixed" data-mdc-auto-init="MDCTopAppBar">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<a href="./" class="material-icons mdc-top-app-bar__navigation-icon">home</a>
<span class="mdc-top-app-bar__title">Materials</span>
</section>
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end" role="toolbar">
<a href="#" id="logoutButton" class="material-icons mdc-top-app-bar__action-item" aria-label="Logout"
alt="Logout">exit_to_app</a>
</section>
</div>
</header>
<div id="wrapper">
<div class="mdc-top-app-bar--fixed-adjust">
<aside class="mdc-drawer">
<div class="mdc-drawer__header">
<h3 class="mdc-drawer__title">Admin</h3>
<h6 class="mdc-drawer__subtitle" id="userEmailDisplay"></h6>
</div>
<div class="mdc-drawer__content">
<nav class="mdc-list" data-mdc-auto-init="MDCList">
<a class="mdc-list-item" href="./">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">dashboard</i>
<span class="mdc-list-item__text">Dashboard</span>
</a>
<a class="mdc-list-item" href="events.html">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">event</i>
<span class="mdc-list-item__text">Events</span>
</a>
<a class="mdc-list-item" href="projects.html">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">code</i>
<span class="mdc-list-item__text">Projects</span>
</a>
<a class="mdc-list-item" href="instructor.html">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">account_circle</i>
<span class="mdc-list-item__text">Instructors</span>
</a>
<a class="mdc-list-item mdc-list-item--activated" href="tutorials.html" aria-selected="true">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">book</i>
<span class="mdc-list-item__text">Materials</span>
</a>
<a class="mdc-list-item" href="onboarding.html">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">supervisor_account</i>
<span class="mdc-list-item__text">Onboarding</span>
</a>
</nav>
</div>
</aside>
<div id="content-wrapper">
<div class="container-fluid">
<!-- Breadcrumbs-->
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./">Dashboard</a></li>
<li class="breadcrumb-item active">Materials</li>
</ol>
<div class="card mb-3">
<div class="card-header d-flex align-items-center">
<span class="mr-3">Stack:</span>
<select id="stackSelect" class="form-control">
<option value="web">Web</option>
<option value="mobile">Mobile</option>
<option value="mlai">Machine Learning / AI</option>
<option value="cloud">Cloud</option>
</select>
</div>
</div>
<!-- dashboard card -->
<div class="card mb-3">
<div class="card-header">
<i class="fas fa-fw fa-folder"></i> Courses
<i class="fas fa-sync fa-spin btn-refresh" data-type="course"></i>
</div>
<div class="card-body">
<div
class="alert alert-danger error-alert"
data-type="course"
style="display: none"
></div>
<table
class="table table-striped"
id="courseTable"
style="min-width: 100%"
>
<thead>
<tr>
<th>Title</th>
<th>Description</th>
<th>Level</th>
<th>Link</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="card-footer text-right">
<button
class="btn btn-primary btn-add"
data-type="course"
disabled
>
Add Course
</button>
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<i class="fas fa-fw fa-folder"></i> Books
<i class="fas fa-sync fa-spin btn-refresh" data-type="book"></i>
</div>
<div class="card-body">
<div
class="alert alert-danger error-alert"
data-type="book"
style="display: none"
></div>
<table
class="table table-striped"
id="bookTable"
style="min-width: 100%"
>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Description</th>
<th>Level</th>
<th>Link</th>
<th>Availability</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="card-footer text-right">
<button class="btn btn-primary btn-add" data-type="book" disabled>
Add Book
</button>
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<i class="fas fa-fw fa-folder"></i> Documentation
<i
class="fas fa-sync fa-spin btn-refresh"
data-type="documentation"
></i>
</div>
<div class="card-body">
<div
class="alert alert-danger error-alert"
data-type="documentation"
style="display: none"
></div>
<table
class="table table-striped"
id="documentationTable"
style="min-width: 100%"
>
<thead>
<tr>
<th>Title</th>
<th>Description</th>
<th>Level</th>
<th>Link</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="card-footer text-right">
<button
class="btn btn-primary btn-add"
data-type="documentation"
disabled
>
Add Documentation
</button>
</div>
</div>
<!-- Sticky Footer -->
<footer class="sticky-footer">
<div class="container my-auto">
<div class="copyright text-center my-auto">
<span>Copyright © DSC FUTA 2020</span>
</div>
</div>
</footer>
</div>
<!-- /.content-wrapper -->
</div>
</div>
<!-- /#wrapper -->
</div>
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<script src="js/vendors/firebase-app.js"></script>
<script src="js/vendors/firebase-auth.min.js"></script>
<script src="js/vendors/firebase-firestore.min.js"></script>
<script src="js/vendors/firebase-storage.min.js"></script>
<script src="vendor/jquery/jquery.min.js"></script>
<!-- <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="vendor/datatables/jquery.dataTables.min.js"></script>
<script src="vendor/datatables/dataTables.bootstrap4.min.js"></script>
<script src="js/admin.min.js"></script> -->
<script src="js/firebase.config.js"></script>
<script src="js/firebase.js"></script>
<script src="js/admin/dashboard.js"></script>
<script src="js/material.js"></script>
</body>
</html>