require("include/top.php");
if(!isset($back)) $back = '/';
switch($_GET['e'])
{
case "password":
case "Invalid password":
$message="Invalid password.
Read the FAQ if you want to get a new password.";
break;
case "login":
$message="Bad username.";
break;
default:
$message=htmlentities(stripslashes($_GET['e'])); //"Undefined error.";
break;
}
?>
|