-
Notifications
You must be signed in to change notification settings - Fork 0
/
performanceStats.php
70 lines (60 loc) · 2.27 KB
/
performanceStats.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
<?php
include 'connect.php';
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Employee Dashboard</title>
<!--Google Font-->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
body{
background-image:url('background.png');
background-repeat:no-repeat;
background-attachment:fixed;
background-size:50% 80%;
background-position:center;
background-color:#155977;
}
</style>
</head>
<body>
<!--
<div class="container" id="logoutbutton">
<a href="logout.php" class="btn btn-primary mb-5">Logout</a>
</div>
-->
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<div class="nav-title">
SPMS 3.0
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<ul>
<li><a href="employee_dashboard.php" target="_self">Dashboard</a></li>
<li><a href="school_department_program_stats.php" target="_self">School/Department/Program-wise</a></li>
<li><a href="courseWisePerformance.php" target="_self">Course-wise</a></li>
<li><a href="instructorWisePerformance.php" target="_self">Instructor-wise</a></li>
<li><a href="instructorWiseChosenCourse.php" target="_self">Instructor-wise (Chosen Course)</a></li>
<li><a href="enrollmentStatistics.php" target="_self">VC/Dean/Head-wise</a></li>
<li><a href="logout.php" target="_self">Logout</a></li>
</ul>
</div>
</div>
</body>
</html>