-
Notifications
You must be signed in to change notification settings - Fork 0
/
classes.php
63 lines (55 loc) · 1.49 KB
/
classes.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
<?php
$page_title = 'Classes';
$page_access = 'All';
include('header.php');
//include other scripts needed here
//end header
echo '</head>';
//start body
echo '<body>';
//include nav bar
include('navbar-classes.php');
?>
<div class="bd-pageheader bg-primary text-white pt-4 pb-4">
<div class="container">
<h1>
Classes
</h1>
<p class="lead">
Manage and submit lesson plans, weekly assessment data, and inventory
</p>
</div>
</div>
<div class="container mt-3 mb-3">
<div class="row">
<div class="col 12">
<h1>
Classes
</h1>
<p class="lead">
Use this spoke of edhub to manage lesson plans and weekly assessment data.
</p>
</div>
</div>
<div class="list-group">
<a href="attendance.php" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">AST Attendance</h5>
</div>
<p class="mb-1">Take attendance for After-School Tutoring classes.</p>
<small class="text-muted">All staff can access this page.</small>
</a>
<a href="weeklydata_courses.php" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Weekly Data</h5>
</div>
<p class="mb-1">View and manage weekly assessment data. View weekly data reports.</p>
<small class="text-muted">All users can access this page.</small>
</a>
</div>
</div>
<?php
//include footer
include('footer.php');
?>