-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfacultydashboard.php
More file actions
31 lines (28 loc) · 919 Bytes
/
Copy pathfacultydashboard.php
File metadata and controls
31 lines (28 loc) · 919 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Faculty Dashboard</title>
</head>
<body>
<?php
require "header.php";
require "prevent_login.php";
require "prevent_protocols/prevent_students.php";
require "prevent_protocols/prevent_admin.php";
if(isset($_GET['login'])) {
if ($_GET['login'] == 'success'){
echo "<script>window.alert('Login was successful!');</script>";
echo"<h4> Welcome ".$_SESSION['uid']." to the faculty dashboard!</h4>";
}
}
?>
<div class="profile-content">
<h4>Welcome to Electronics and Telecommunication Engineering Department Course Management System </h4>
</div>
<?php
require "footer.php";
?>
</body>
</html>