-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
58 lines (48 loc) · 1.13 KB
/
index.php
File metadata and controls
58 lines (48 loc) · 1.13 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
<?php
include('inc/app_settings.php');
require_once('inc/helpers.php');
$helpers = new Helpers();
// include('models/Dashboard.php');
include_once 'templates/header.php';
?>
<style>
table{
padding:3px;
}
td{
width: 1%;
padding:3px;
border:1px solid grey;
}
thead td{
background-color: #012970;
text-align: center;
color:white;
}
</style>
<main id="main" class="main" style="background:white;">
<div class="pagetitle">
<h1><?php echo $_SESSION['SESS_DEPARTMENT_NAME'] ?></h1><h6>Academic Year <?php echo $_SESSION['SESS_ACADEMIC_YEAR'] ?>
</h6>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active">Dashboard</li>
</ol>
</nav>
</div><!-- End Page Title -->
<section class="section dashboard" style="background:white;">
<table>
<thead>
<tr>
<td>Monday</td>
<td>Tuesday</td>
<td>Wednesday</td>
<td>Thursday</td>
<td>Friday</td>
</tr>
</thead>
</table>
</section>
</main><!-- End #main -->
<?php include_once 'templates/footer.php' ?>