<?php
/******************************************************************************
************** Simple SMS Site Software *********************************
************** SSSSv1.0*****************************************************
************** by (aq) limited http://aql.com *******************************
************** All Rights Reserved ******************************************
************** Please read COPYRIGHT file prior to modification********
********************************************************************************/
if (session_start()) {
session_unset();
session_destroy();
}
include("inc/header.inc.php");
$_SESSION['user'] = "Not logged in";
$_SESSION['pass'] = "Not logged in";
$_SESSION['HTTP_USER_AGENT'] = md5($_SERVER['HTTP_USER_AGENT']);
?>
<form method="POST" name="sender_form" action="user_hub.php">
<tr>
<td>
<h1>Login</h1>
<br>
<h2>Username</h2>
<input type="text" name="theUser" size="20">
<h2>Password</h2>
<input type="password" name="thePassword" size="20">
<br>
<input type="submit" value="Submit" name="B1">
<br>
<br>
New users <a href="signup.php">sign up</a>
</form>
<?
include("inc/footer.inc.php");
?>