Initial Commit
Add the basic structure of the site.
This commit is contained in:
14
common/error_pages/403.php
Normal file
14
common/error_pages/403.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/header.php');
|
||||
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/menu.php');
|
||||
?>
|
||||
<h1 align="center">Error 403</h1>
|
||||
<p align="center">
|
||||
<font size="10">
|
||||
<br/>>:(
|
||||
<br/>
|
||||
</font>
|
||||
<br/>
|
||||
You're not allowed here. Stop that.<br/>
|
||||
</p>
|
||||
<?php include_once ($_SERVER['DOCUMENT_ROOT'].'/common/footer.php');?>
|
||||
24
common/error_pages/404.php
Normal file
24
common/error_pages/404.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/header.php');
|
||||
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/menu.php');
|
||||
?>
|
||||
<h1 align="center">Error 404</h1>
|
||||
<p align="center">
|
||||
<font size="10">
|
||||
<br/>
|
||||
:(<br/>
|
||||
</font>
|
||||
</p>
|
||||
<br/>
|
||||
<p align="center">
|
||||
Sorry but what your looking for isn't here.<br/>
|
||||
Maybe you misspelled something maybe you didn't. <font size="1">Or I totally broke the link you had... sorry.</font>
|
||||
<br/>
|
||||
Please try again.<br/>
|
||||
</p>
|
||||
<div class="centered_img">
|
||||
<img alt="It's a 404 error my dudes." src="/common/images/404.jpg">
|
||||
</div>
|
||||
<br/>
|
||||
<br/>
|
||||
<?php include_once ($_SERVER['DOCUMENT_ROOT'].'/common/footer.php');?>
|
||||
10
common/error_pages/500.php
Normal file
10
common/error_pages/500.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/header.php');
|
||||
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/menu.php');
|
||||
?>
|
||||
<h1 align="center">Error 500</h1>
|
||||
<p align="center">
|
||||
<br/>
|
||||
We done made a boo boo...<br/>
|
||||
</p>
|
||||
<?php include_once ($_SERVER['DOCUMENT_ROOT'].'/common/footer.php');?>
|
||||
Reference in New Issue
Block a user