-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmhod.php
51 lines (49 loc) · 1.21 KB
/
cmhod.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
<?php
session_start();
$user = $_SESSION['user'];
$log = $_SESSION['cmhod'];
$msg3 = "";
$flag="1";
include 'config/config.php';
if ($log != "log"){
header ("Location: index.php");
}
?>
<html>
<title>Faculty 1</title>
<div class="wrapper">
<head>
<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;
}
h1{color:#fff;}
</style>
</head>
<body>
<link href="css/mystyle.css" rel="stylesheet" type="text/css"/>
<table><tr><td><h1>Welcome Faculty 1</h1></td>
<td width="1000px" align="right"><a href="logout.php" class="logout">Logout</a></td></tr></table>
<div id="cssmenu">
<ul>
<li><a href="cmhod.php">Home</a></li>
<li><a href="cmhod-cm-result.php">See Result</a><li>
<li><a href="cmhod-stud-msg.php">Students Messages</a></li>
<li><a href="#">Profile</a>
<ul>
<li><a href="cmhod-changepass.php">Change Password</a></li>
</ul>
</li>
</ul>
</div>
<link rel="stylesheet" href="styles.css">
</div>
</body>
</html>