forked from geoffhumphrey/brewcompetitiononlineentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
401.php
36 lines (35 loc) · 1.23 KB
/
401.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
<?php
require('paths.php');
require(DB.'common.db.php');
require(LIB.'common.lib.php');
require(INCLUDES.'authentication_nav.inc.php'); session_start();
require(INCLUDES.'url_variables.inc.php');
require(INCLUDES.'db_tables.inc.php');
require(INCLUDES.'constants.inc.php');
$section = "401";
?>
<html>
<head>
<title><?php echo $_SESSION['contestName']; ?> Organized By <?php echo $_SESSION['contestHost']." > Error 401: Unauthorized"; ?></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>401 Error</h1></div>
</div>
<div class="error">Unfortunately, you do not have permission to make 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>