patchcablemgr/html/admin_edit_user_form.php
2020-11-22 22:50:42 +00:00

32 lines
716 B
PHP
Executable File

<?php
/* DO NOT REMOVE */
if (!defined('QUADODO_IN_SYSTEM')) {
exit;
}
/*****************/
?>
<fieldset>
<legend>
<?php echo ADMIN_EDIT_USER_LABEL; ?>
</legend>
<form action="#" method="get">
<input type="hidden" id="type" name="type" value="process" />
<table border="0">
<tr>
<td>
<?php echo USERNAME_LABEL; ?>
</td>
<td>
<input type="text" id="username" name="username" maxlength="<?php echo $qls->config['max_username']; ?>" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="button" onclick="javascript:run_form('edit_user', new Array('type','username'));" value="<?php echo GO_LABEL; ?>" />
</td>
</tr>
</table>
</form>
</fieldset>