-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaff.php
35 lines (30 loc) · 1.12 KB
/
staff.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
<?php
require 'lib/site.inc.php';
$view = new Felis\StaffView();
if(!$view->protect($site, $user)) {
header("location: " . $view->getProtectRedirect());
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php echo $view->head(); ?>
</head>
<body>
<div class="staff">
<?php echo $view->header(); ?>
<p class="date">4:44pm Tuesday, Feb 16, 2016</p>
<p>Welcome, <em>whoever you are...</em></p>
<p>This is the main page for Felis Investigations staff. The options available to you depend on your
access privileges. Please contact your supervisor for any modification of access rights in the
system.</p>
<div class="menu">
<p><a href="cases.php"><img src="images/sitting200.png" width="137" height="200" alt="Sitting Cat"></a> <a href="cases.php">Cases</a></p>
<p><a href="">Culprits</a> <a href=""><img src="images/evil-cat200.png" width="138" height="200" alt="Evil Cat"></a></p>
<p><a href="users.php"><img src="images/sleeping200.png" width="282" height="200" alt="Sleepy Cat"></a> <a href="users.php">Users</a></p>
</div>
<?php echo $view->footer(); ?>
</div>
</body>
</html>