-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminSlide.php
85 lines (76 loc) · 2.74 KB
/
adminSlide.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
<!-- test............. -->
<?php
session_start();
if (!isset($_SESSION['name'])) {
echo "
<script>
alert('please login..');
location.href='index.php'
</script>
";
}
?>
<!-- ------------link-------------- -->
<link rel="stylesheet" href="css/w3school.css">
<link rel="stylesheet" type="text/css" href="css/slide.css">
<script type="text/javascript" src="js/slide.js"></script>
<!------------------------- body part----------------------- -->
<!-- --------------------header----------------------------- -->
<ul class="ul">
<li class="li">
<div class="togglebtn" onclick="callsidebar()">
<span></span>
<span></span>
<span></span>
</div>
<label class="a" style="margin-left: 40px;">
<a style="text-decoration: none;" href="adminHome.php">Admin Panal</a>
</label>
</li>
<li class="li" style="float:right">
<a class="a" href="logout.php"> Log-Out </a>
</li>
</ul>
<!-- --------------------------slide bar-------------------------------- -->
<div id="sidebar">
<table >
<tr>
<th>
<img align="right" class="profile-img" src="image/profile.png" alt="profile-img">
</th>
<th>
<label class="un">Admin name :
<?php
echo $_SESSION['name']." ";
?>
</label>
</th>
</tr>
</table>
<div><hr></div>
<!-- -------------------------------option menu----------------------------------------- -->
<div class="w3-bar-item w3-button">
<label onclick="managestu()" class="dropbtn">Manage Student</label>
<div id="student" class="dropdown-content">
<a class="a" href="addStudent.php">Add Student Data</a>
<a class="a" href="addData.php">Upload Student Data</a>
<a class="a" href="viewData.php">View Student Data</a>
</div>
</div>
<div class="w3-bar-item w3-button">
<label class="dropbtn" >
<a style="text-decoration: none;" href="operationRoom.php" >Manage Room</a> </label>
</div>
<div class="w3-bar-item w3-button">
<label onclick="myFunction()" class="dropbtn">Option</label>
<div id="myDropdown" class="dropdown-content">
<a class="a" href="allocateseatplan.php">Allocate Seat Plan</a>
<a class="a" href="adminViewSeatPlan.php">View Seat Plan</a>
</div>
</div>
<div class="w3-bar-item w3-button">
<label class="dropbtn" >
<a style="text-decoration: none;" href="staffMng.php" >Manage Staff </a> </label>
</div>
</div>
<!-- -------------------------------------------------------------------- -->