diff --git a/banned.php b/banned.php index dc079cf0..6508c111 100644 --- a/banned.php +++ b/banned.php @@ -1,7 +1,16 @@ "._("Banned?").""; - print "

"._("You are not banned.")."

"; - print ""; + 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('not_banned.html', array() + )) + )); + print ""; ?> diff --git a/templates/not_banned.html b/templates/not_banned.html new file mode 100644 index 00000000..41d81db0 --- /dev/null +++ b/templates/not_banned.html @@ -0,0 +1,6 @@ +{% filter remove_whitespace %} +{# Automatically removes unnecessary whitespace #} +
+

You are not banned! Well done on not being terrible!

+
+{% endfilter %}