-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.php
64 lines (59 loc) · 2.14 KB
/
dashboard.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
<!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">
<title>Dashboard</title>
<!-- bootstrap -->
<link rel="stylesheet" href="/libraries/bootstrap/css/bootstrap.min.css">
<!-- style.css -->
<link rel="stylesheet" href="/style.css">
</head>
<body>
<?php
session_start();
$id = $_SESSION["id"];
$firstname = $_SESSION["FirstName"];
$lastname = $_SESSION["LastName"];
$profileType = $_SESSION["ProfileType"];
?>
<div class="container-fluid h-100">
<div class="row h-100">
<div class="col-2 bg-primary">
<?php
if ($profileType === "admin") {
// load admin sidebar
} else if ($profileType === "librarymanager") {
// load librarymanager sidebar
include "librarymanager/sidebar.php";
} else if ($profileType === "sod") {
// load sod sidebar
include "sods/sidebar.php";
} else {
// load student sidebar
include("students/sidebar.php");
}
?>
</div>
<div class="col">
<?php
if ($profileType === "admin") {
// load admin content
} else if ($profileType === "librarymanager") {
// load librarymanager content
include "librarymanager/index.php";
} else if ($profileType === "sod") {
// load sod content
include "sods/index.php";
} else {
// load student content
include "students/index.php";
}
?>
</div>
</div>
</div>
<script src="/libraries/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>