-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path403.php
43 lines (37 loc) · 793 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
43
<?php
require_once "config/config.inc";
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta author="Antoine De Gieter">
<title><?php print TITLE; ?></title>
<?php
require_once "sections/links.php";
?>
</head>
<body>
<?php require_once "sections/menu.php"; ?>
<section class="container">
<?php
require_once "sections/alerts.php";
?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="alizarin">
<h1 class="padded">
A 403 error just occured - Forbidden
</h1>
<p class="padded">
It means you're not allowed to see the contents of this page.
</p>
</div>
</div>
</div>
</section>
<?php
require_once "sections/js.php";
?>
</body>
</html>