-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
96 lines (90 loc) · 2.34 KB
/
admin.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
<?php
session_start();
$user = $_SESSION['user'];
$log = $_SESSION['admin'];
$msg3 = "";
$flag="1";
include 'config/config.php';
if ($log != "log"){
header ("Location: index.php");
}
?>
<html>
<title>Admin</title>
<div class="wrapper">
<head>
<link href="css/mystyle.css" rel="stylesheet" type="text/css">
<style>
.wrapper {
display: flex;
align-items: center;
flex-direction: column;
width: 97%;
min-height: 97%;
padding: 20px;
background: rgba(4, 40, 68, 0.85);
font-size: 14px;
}
.logout{
background-color:#09F;
color:#FFF;
padding:10px;
margin-right:20px;
text-decoration:none;
border-radius:5px;
};
li a:hover{
background-color:#096;}
.cssmenu ul li a:hover{
background-color:#969;}
h1{color:#FFF;}
</style>
</head>
<body>
<table><tr><td><h1>Welcome Admin</h1></td>
<td width="1000px" align="right"><a href="logout.php" class="logout">Logout</a></td></tr></table>
<div id="cssmenu" class="cssmenu">
<ul>
<li><a href="admin.php">Home</a></li>
<li><a href="#">Add Student</a>
<ul>
<li><a href="add-cm.php?key=CM">CSE</a></li>
<li><a href="add-cm.php?key=IF">ECE</a></li>
</ul>
</li>
<li><a href="#">Delete Student</a>
<ul>
<li><a href="del-stud.php?key=CM">CSE</a></li>
<li><a href="del-stud.php?key=IF">ECE</a></li>
</ul>
</li>
<li><a href="#">See Result</a>
<ul>
<li><a href="result.php?key=CM">Faculty 1</a></li>
<li><a href="result.php?key=IF">Faculty 2</a></li>
</ul>
</li>
<li><a href="#">Students Messages</a>
<ul>
<li><a href="msg.php?key=CM">Faculty 1</a></li>
<li><a href="msg.php?key=IF">Faculty 2</a></li>
</ul>
</li>
<li><a href="reset-feed.php">Reset Feedback</a></li>
<li><a href="question.php">Question</a></li>
<li><a href="#">Subjects</a>
<ul>
<li><a href="cm-subject.php">Faculty 1</a></li>
<li><a href="if-subject.php">Faculty 2</a></li>
</ul>
</li>
<li><a href="#">Profile</a>
<ul>
<li><a href="changepass.php">Change Password</a></li>
</ul>
</li>
</ul></div>
<link rel="stylesheet" href="styles.css">
</div>
</body>
</html>