-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
153 lines (124 loc) · 5.92 KB
/
header.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php include('database.php'); ?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Exam Automation System</title>
<link rel="icon" type="image" href="assets/img/exam-icon.ico"/>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<!-- Style core CSS -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- JQuery UI core CSS -->
<link href="../assets/css/jquery-ui.css" rel="stylesheet" />
<link href="../assets/css/jquery-ui.structure.css" rel="stylesheet" />
<link href="../assets/css/jquery-ui.theme.css" rel="stylesheet" />
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
<!-- Animation library for notifications -->
<link href="assets/css/animate.min.css" rel="stylesheet"/>
<!-- Light Bootstrap Table core CSS -->
<link href="assets/css/light-bootstrap-dashboard.css" rel="stylesheet"/>
<!-- CSS for Demo Purpose, don't include it in your project -->
<link href="assets/css/demo.css" rel="stylesheet" />
<!-- CSS for ont Awesome, don't include it in your project -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" />
<!-- CSS for Google font, don't include it in your project -->
<link href="assets/css/font-google.css" rel="stylesheet" />
<!-- Fonts and icons -->
<link href="assets/css/pe-icon-7-stroke.css" rel="stylesheet" />
<link href="assets/css/jasny-bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<div class="wrapper">
<div class="sidebar" data-color="blue" data-image="assets/img/sidebar-2.jpg">
<!--
Tip 1: you can change the color of the sidebar using: data-color="blue | azure | green | orange | red | purple"
Tip 2: you can also add an image using data-image tag
-->
<div class="sidebar-wrapper">
<div class="logo">
<a href="" class="simple-text">
Exam Automation System
</a>
</div>
<ul class="nav">
<li class="active">
<a href="index.php">
<i class="fa fa-hand-rock-o" aria-hidden="true"></i>
<p>Dashboard</p>
</a>
</li>
<li>
<a href="Admin/login.php">
<i class="fa fa-eye" aria-hidden="true"></i>
<p>Admin</p>
</a>
</li>
<li>
<a href="TeacherSeat/login.php">
<i class="fa fa-bar-chart" aria-hidden="true"></i>
<p>Teachers' Duty Plan</p>
</a>
</li>
<li>
<a href="StudentSeat/login.php">
<i class="fa fa-bar-chart" aria-hidden="true"></i>
<p>Students' Seat Plan</p>
</a>
</li>
<li>
<a href="viewseatplan.php">
<i class=""></i>
<p>View Seat Plan</p>
</a>
</li>
<li>
<a href="" >
<i class=""></i>
<p>View Duty Plan</p>
</a>
</li>
<li>
<a href="viewdutyplan_id.php">
<i class="fa fa-search"></i>
<p>By ID</p>
</a>
</li>
<li>
<a href="viewdutyplan_dept.php">
<i class="fa fa-search"></i>
<p>By Department</p>
</a>
</li>
</ul>
</div>
</div>
<div class="main-panel" >
<nav class="navbar navbar-default navbar-fixed">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navigation-example-2">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Dashboard</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-left">
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div>
</div>
</nav>
<br>
<script type="text/javascript">
/* $("#duty").click(function(){
$("#id").toggle();
$("#dept").toggle();
}); */
</script>