Files
.templates
errors
styles
400.php
401.php
403.php
404.php
410.php
414.php
500.php
src
styles
.gitignore
.htaccess
deploy.sh
favicon.ico
index.php
test.sh
desultd/errors/400.php
2021-01-19 18:55:06 -06:00

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>