
PK 
<?php
include("connexion.php");
include("head.php");
?>
<table width="100%" border="4" cellpadding="8" cellspacing="1">
<tr>
<td bgcolor="#FFFFFF" colspan="2" class="white"><img src="../img/addlogin.gif" align="middle">
Select an Account type you want to add as and provide the
username and password to create an Account login.</td>
</tr>
<form action="addthislogin.php" method="post">
<tr>
<td><strong>Username:</strong>
<input type="text" name="user"></td>
<td><strong>Name : </strong><select name="prefix"><option>Mr</option><option>Ms</option></select>
<input type="text" name="name"></td>
</tr>
<tr>
<td><strong>Password : </strong>
<input type="password" name="pass"></td>
<td><strong>Confirm:</strong>
<input type="password" name="cpass"></td>
</tr>
<tr>
<td><strong>Question:</strong>
<select name="fpques">
<option>What is your pet's name?</option>
<option>What is your secret 4 digit Code?</option>
<option>What is the place you were born at?</option>
<option>What is your favorite passtime?</option>
<option>What is your all-time favorite sports team?</option>
<option>Where did you first meet your spouse?</option>
</select>
</td>
<td><strong>Answer:</strong>
<input type="text" name="fpans"></td>
</tr>
<tr>
<td align="center" colspan="2"><input type="image" src="../img/loginc.gif"></td>
</tr>
</form>
</table>
</div>
</div>
<?php
include("foot.php");
?>


PK 99