<?php

################################################
# EVILCMS FLATFILE RECODE - 100% FUNCTIONALITY #
################################################

Session_Start();

If($CMS->LoggedIn):
	If($_USER['rank'] == "admin") {
		echo "<center><h3>Ban Control</h3></center><br />";
		Echo "<a href=\"?p=unban\">Unban a user</a> - <a href=\"?p=ban\">Ban a user</a>";
		Echo "<br />";
		Echo "You can ban someone at your retro, they will be able to login at the website<br />";
		Echo "But not in hotel.";
	}else{
		Echo "You dont have sufficient rights.";
	}
Else:
	Echo "Please login first.";
EndIf;

?>