
PK 
<?php
include "conn.php";
include "templatic/header.php";
?>
<h2 id="icon_pick">
Add A New Client Form</h2>
<br>
<strong> Fill in details for new Client Account:</strong>
<table cellspacing="3" align="center" width="100%" border="4" cellpadding="3">
<form action="subclntadded.php" method="get" onsubmit="return checkform(this);">
<tr>
<td valign="top"><strong>Company Name</strong>:</td><td><input type="text" name="subname" size="33"></td>
</tr>
<tr><td><strong>Address</strong>:</td><td><textarea rows="4" cols="25" name="subaddress"></textarea></td></tr>
<td valign="top"><strong>Contact Person</strong>:</td><td><input type="text" name="subperson" size="33"></td>
</tr>
<tr>
<td valign="top"><strong>Phone</strong>:</td><td><input type="text" name="subphone" size="33"></td>
</tr>
<tr><td align="center" colspan="2"><br><center><input type="submit" value="Add Sub Client" class="amo-submit"></center></td></tr>
</form>
</table>
<?php
include "templatic/footer.php";
?>


PK 99