forked from geoffhumphrey/brewcompetitiononlineentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
403.php
31 lines (30 loc) · 1.02 KB
/
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
<?php
require('paths.php');
require(CONFIG.'bootstrap.php');
$section = "403";
?>
<html>
<head>
<title><?php echo $_SESSION['contestName']; ?> Organized By <?php echo $_SESSION['contestHost']." > Error 403: Permission Denied"; ?></title>
<link href="<?php echo $base_url; ?>/css/<?php echo $_SESSION['prefsTheme']; ?>.css" rel="stylesheet" type="text/css" />
<body>
<div id="container">
<div id="navigation">
<div id="navigation-inner"><?php include (SECTIONS.'nav.sec.php'); ?></div>
</div>
<div id="content">
<div id="content-inner">
<div id="header">
<div id="header-inner"><h1>403 Error</h1></div>
</div>
<div class="error">Denied! You do not have permission for this request.</div>
<p>Please use the main navigation above to get where you want to go.</p>
<p>Cheers!<br>The <?php echo $_SESSION['contestName']; ?> Site Server</p>
</div>
</div>
</div>
<div id="footer">
<div id="footer-inner"><?php include (SECTIONS.'footer.sec.php'); ?></div>
</div>
</body>
</html>