<?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/dbinfo.inc.php");
include("inc/header.inc.php");
?>
<form method="POST" name="sender_form" action="signup_confirm.php">
<tr>
<td width="50%">
<h1>Sign up</h1>
</tr>
<tr>
<td width="50%">
<h2>Full name</h2>
<input type="text" name="theName" size="20">
</td>
<td width="50%">
<h2>Email</h2>
<input type="text" name="email" size="20">
</td>
</tr>
<tr>
<td width="50%">
<h2>Mobile</h2>
<input type="text" name="theMobile" size="20">
</td>
<td width="50%">
<h2>Landline</h2>
<input type="text" name="theLandline" size="20">
</td>
</tr>
<tr>
<td width="50%">
<h2>Address</h2>
<input type="text" name="address1" size="20"><br>
<input type="text" name="address2" size="20"><br>
<input type="text" name="address3" size="20"><br>
<input type="text" name="postcode" size="10">
</td>
<td width="50%">
<h2>Username</h2>
<input type="text" name="theUser" size="20">
<h2>Password</h2>
<input type="password" name="thePassword" size="20">
</td>
</tr>
</table>
<table>
<tr>
<td>
<h2>Extra notes</h2>
<textarea name="theNotes" class="notesbox" rows="6" cols="50"></textarea>
<br>
<input type="submit" value="Submit" name="B1">
</td>
</tr>
</form>
<?
include("inc/footer.inc.php");
?>