<?php
/******************************************************************************
************** Simple SMS Site Software *********************************
************** SSSSv1.0*****************************************************
************** by (aq) limited http://aql.com *******************************
************** All Rights Reserved ******************************************
************** Please read COPYRIGHT file prior to modification********
********************************************************************************/
session_start();
include("inc/header.inc.php");
include("inc/dbinfo.inc.php");
$user = $_SESSION['user'];
$pass = $_SESSION['pass'];
if ($access == "forbidden") {
include("inc/restricted.inc.php");
}
elseif ($access == "locked") {
include("inc/restricted.inc.php");
}
else {
?>
<form method="POST" name="sender_form" action="do_add_address.php">
<table class=tableborder>
<tr>
<td>
<h1>Address Book</h1>
<h2>Contact details</h2>
<h3>Name</h3>
<input type="text" name="name" size="20">
<h3>Number</h3>
<input type="text" name="number" size="20">
<h3>Other Details</h3>
<input type="text" name="other" size="20">
<br>
<br>
<input type="submit" value="Submit" name="B1">
</td>
</tr>
</table>
</form>
<?
}
include("inc/footer.inc.php");
?>