<!-- BEGIN BODY -->
<table border="0" width="90%">
<tr>
<td align="left">
<!-- BEGIN PAGE CONTENT -->
<div>
<h2>Password Reminder</h2>
<?PHP
if($T['Found'] )
{
?>
<!-- Display this section if the e-mail address is found -->
Your account has been located and a reminder e-mail has been sent to <?PHP echo $T['Email']; ?>.<br />
Please check your e-mail shortly to get your username and password.
<?PHP
}
else
{
?>
<!-- Otherwise show the reminder form -->
Enter the e-mail address you used when you created your account. Your login<br />
information will be sent to this e-mail address if it is found in the database.
<br />
<br />
<form action="accounts.php" method="post">
<input type="text" name="Input" size="30">
<input type="hidden" name="Run" value="SendReminder">
<input type="submit" value="Remind Me">
</form>
<?PHP
}
?>
</div>
<!-- END PAGE CONTENT -->
</td>
</tr>
</table>
<!-- END BODY -->