query_users.php is modified even if we will drop it in the future to be sure it works everywhere.
29 lines
673 B
PHP
29 lines
673 B
PHP
<?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>
|
|
<tr>
|
|
<td> Password </td>
|
|
<td> <input type="password" name="ext_password"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td> Password (again) </td>
|
|
<td> <input type="password" name="ext_password2"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td> Real Name </td>
|
|
<td> <input type="text" name="ext_realname" value="<?php echo $ext_realname; ?>"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan=2> </td>
|
|
</tr>
|
|
|
|
<!-- end of edit account form -->
|