This repository has been archived by the owner on Jul 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenrolled.php
70 lines (58 loc) · 3.31 KB
/
enrolled.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Track Attendance | Enrolled Subjects</title>
<link rel="icon" type="image/webp" href="assets/img/icon.png" />
<link rel="stylesheet" type="text/css" href="assets/vendor/materialize-1.0.0/css/materialize.min.css" />
<link rel="stylesheet" type="text/css" href="assets/vendor/bootstrap-4.5.3/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<?php include "includes/header.html"; ?>
<main class="ctm-container mt-3">
<div class="row">
<div class="col s12 m6">
<div class="card grey darken-3">
<div class="card-content white-text">
<h2 class="text-white center-align">Enroll</h2>
<span class="card-title">
Enroll into subjects for which you want to track attendance.
The list on the left shows subjects you are currently enrolled in & the list on the right
shows available subjects.
</span>
<p class="text-info">Just logged in? Try refreshing the page to see your enrolled subjects</p>
<p id="info-area"></p>
<div class="row mt-3">
<div class="col-md-6">
<ul class="collection with-header ctm-list-grey rounded border-0 hoverable z-depth-5">
<li class="collection-header grey darken-2"><h4>Currently Enrolled</h4></li>
<span id="enrolled">
</span>
</ul>
</div>
<div class="col-md-6">
<ul class="collection with-header ctm-list-grey rounded border-0 hoverable z-depth-5">
<li class="collection-header grey darken-2"><h4>Available Subjects</h4></li>
<span id="all-subjects">
</span>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include "includes/enroll-modal.html"; ?>
</main>
<?php include "includes/login-modal.html"; ?>
<script src="assets/vendor/jquery-3.5.1.min.js"></script>
<script src="assets/vendor/bootstrap-4.5.3/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/materialize-1.0.0/js/materialize.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/login.js"></script>
<script src="assets/js/subjects.js"></script>
<script src="assets/js/enrolled.js"></script>
</body>
</html>