forked from dscfuta/vibranium-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstructor.html
executable file
·149 lines (145 loc) · 7.03 KB
/
instructor.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
<!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 - Instructors</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="index" class="material-icons mdc-top-app-bar__navigation-icon">home</a>
<span class="mdc-top-app-bar__title">Instructors</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 mdc-list-item--activated" href="instructor.html" aria-selected="true">
<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" href="tutorials.html">
<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">Instructors</li>
</ol>
<!-- dashboard card -->
<div class="card mb-3">
<div class="card-header">
<i class="fas fa-fw fa-user"></i> Instructor
<i class="fas fa-sync fa-spin" id="refreshButton"></i>
</div>
<div class="card-body">
<div
class="alert alert-danger"
id="instructorErrorAlert"
style="display: none"
></div>
<table
class="table table-striped"
id="instructorsTable"
style="min-width: 100%"
>
<thead>
<tr>
<th>Instructor's Name</th>
<th>Instructor's Bio</th>
<th>Instructor's Role</th>
<th>Instructor's TwitterId</th>
<th>Instructor's GithubId</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="card-footer text-right">
<button class="btn btn-primary" id="addButton" disabled>
Add Instructor
</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 2018</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>