summaryrefslogtreecommitdiff
path: root/www/httperror.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/httperror.php')
-rwxr-xr-xwww/httperror.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/www/httperror.php b/www/httperror.php
index 8b1a62a..423f0fa 100755
--- a/www/httperror.php
+++ b/www/httperror.php
@@ -6,6 +6,8 @@
500
502
504
+
+ ban -- user is banned and not allowed to log in
404 is displayed if $_GET["e"] is not set.
@@ -49,6 +51,10 @@
}elseif($_GET['e']==504){
echo '<h1 id="Error-Page-head" >'.$_GET['e'].'</h1>';
echo '<h2 id="Error-Page-description" >A server i&#39;m trying to contact is insanely slow. </br>I can&#39;t wait forever. I&#39;m sorry!</h2>';
+
+ }elseif($_GET['e']=='ban'){
+ echo '<h1 id="Error-Page-head" >You are banned!</h1>';
+ echo '<h2 id="Error-Page-description" >Too many authentication failures.</br>It&#39s not my fault. I swear.</h2>';
}?>
</div>
<?php include("static/footer.html");?>