-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
58 lines (50 loc) · 1.5 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
<?php
session_start();
if (empty($_SESSION['user_role'])) {
header("Location:index.php");
exit();
}
if ($_SESSION['user_role'] == 'LIBRARIAN') {
header("Location:librarian.php");
exit();
}
if ($_SESSION['user_role'] == 'MEMBER') {
header("Location:member.php");
exit();
}
include('header.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="Prekvalifikacije, ETF, PHP, html5">
<meta name="author" content="MS">
<meta name="description" content="PHP: PHP & MySQL">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles/styles-index.css">
<link rel="stylesheet" type="text/css" href="styles/styles-header.css">
<link rel="stylesheet" type="text/css" href="styles/styles-footer.css">
<title>LIBRARY | ADMIN</title>
</head>
<body>
<div id="admin-wrapper">
Welcome, <?= $_SESSION['person'] ?>
<br>
You are logged in as: <?= $_SESSION['USERemail'] ?>
<br>
<div style="float:right">
<a href="logout.php">LOGOUT</a>
</div>
<p>From this page you can proceed to:</p>
<hr>
<a href="user-management.php">User management</a>
<br>
<a href="book-management.php">Book management</a>
<br>
<a href="account-settings.php">Settings</a>
</div>
</body>
</html>
<?php include('footer.php'); ?>