27 lines
740 B
PHP
27 lines
740 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
|
||
|
<link href="/errors/styles/styles.css" type="text/css" rel="stylesheet" />
|
||
|
<title>400 Bad Request</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
|
||
|
<div class="content">
|
||
|
<div class="section">
|
||
|
<pre>
|
||
|
___ ___
|
||
|
|__ \__ _|__ \
|
||
|
/ /\ \ /\ / / / /
|
||
|
|_| \ V V / |_|
|
||
|
(_) \_/\_/ (_)
|
||
|
</pre>
|
||
|
<h1>400</h1>
|
||
|
<p>You done fucked up, Aaron</p>
|
||
|
<p>Your browser sent an invalid request. Try again. If this keeps happening, contact the site administrator.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
|
||
|
</body>
|
||
|
</html>
|