diff --git a/banned.php b/banned.php
index 1bee9115..93e8929e 100644
--- a/banned.php
+++ b/banned.php
@@ -1,8 +1,18 @@
"._("Banned?")."";
- print ""._("You are not banned.")."
";
- print "";
+ require_once 'inc/functions.php';
+ require_once 'inc/bans.php';
+ checkBan();
+ print ""._("Banned?")."";
+
+ //If the user is not banned, show the "not banned" page.
+ die(
+ Element('page.html', array(
+ 'title' => _('Not banned!'),
+ 'config' => $config,
+ 'nojavascript' => true,
+ 'body' => Element('notbanned.html', array()
+ ))
+ ));
+
+ print "";
?>
diff --git a/templates/notbanned.html b/templates/notbanned.html
new file mode 100644
index 00000000..41d81db0
--- /dev/null
+++ b/templates/notbanned.html
@@ -0,0 +1,6 @@
+{% filter remove_whitespace %}
+{# Automatically removes unnecessary whitespace #}
+
+
You are not banned! Well done on not being terrible!
+
+{% endfilter %}