Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Little Challenge
http://lumosalliance.com/sites
Have fun. If you get in, I'll give you 5 bucks.
deathrape wrote: http://lumosalliance.com/sites
Have fun. If you get in, I'll give you 5 bucks.
session_start();
$userarea = "/board.php";
//login
if($_POST['user'] == "")
{
echo "<form action=index.php method=post>\n
<table>
<tr><td colspan=2><center><font size=5>
<b>C</b>ant <b>F</b>ind <b>C</b>ontrol</font>
<br><small><i>
Authenticate, if you please...</i></small></center>
</td>
</tr>
<tr>
<td>Username:</td>
<td><input type=text name=user></td>
</tr>
<tr>
<td>Password:</td>
<td><input type=password name=pass></td>
</tr>
<tr>
<td colspan=2><center><input type=submit value='Return Home'>
</tr>
</table>";
}
else
{
//check login
if($_POST['user'] != "iris" || $_POST['pass'] != "dorkd0rk!lulz")
exit("you have not been authenticated. Please leave.");
//define session
$_SESSION['user'] = "iris";
$_SESSION['pass'] = "dorkd0rk!lulz";
//and, hello!
echo "<a href=$userarea>The board</a> awaits...";
}
?>