-
Notifications
You must be signed in to change notification settings - Fork 0
/
403.php
42 lines (34 loc) · 918 Bytes
/
403.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
<?php
include './modules/common/master_include.php';
check_login();
check_user();
?>
<!DOCTYPE html>
<html>
<head>
<title>403 - Forbidden</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="<?= icon ?>">
<link rel="apple-touch-icon" href="<?= touch_icon ?>">
<?php
echo "<link rel=\"stylesheet\" href=\"".versionify('/stylesheets/common.css')."\">";
echo "<link rel=\"stylesheet\" href=\"".versionify('/stylesheets/mobile.css')."\">";
echo "<link rel=\"stylesheet\" href=\"".versionify('/stylesheets/error.css')."\">";
?>
</head>
<body>
<?php
generate_topbar();
?>
<br>
<div class="content">
<h1>403 - Forbidden</h1>
<h2>There's still a chonky boi stuck here.</h2>
<img class="picture" src="/images/chonky-boi.jpg" alt="Fat racoon">
</div>
<?php
include './modules/bottombar.php';
?>
</body>
</html>