<?php
/*********************/
/* Edit Account Form */
?>
<!-- start of edit account form -->
<tr>
<td> Email Address </td>
<td> <input type="text" name="ext_email" value="<?php echo $ext_email; ?>"> </td>
</tr>
<td> Password </td>
<td> <input type="password" name="ext_password"> </td>
<td> Password (again) </td>
<td> <input type="password" name="ext_password2"> </td>
<td> Real Name </td>
<td> <input type="text" name="ext_realname" value="<?php echo $ext_realname; ?>"> </td>
// if we manage another user we can give him administrator rights
if($iUserId == $_REQUEST['userId'])
{
<td> Administrator </td>
<td> <input type="checkbox" name="ext_hasadmin" "<?php echo $ext_hasadmin; ?>" value="on"> </td>
}
<td colspan=2> </td>
<!-- end of edit account form -->