Files
server/usr/share/psa-horde/templates/admin/user/update.inc
2026-01-07 20:52:11 +01:00

67 lines
2.2 KiB
PHP

<form id="updateuser" name="updateuser" method="post" action="<?php echo Horde::selfUrl() ?>">
<?php Horde_Util::pformInput() ?>
<input type="hidden" name="form" value="update" />
<input type="hidden" name="user_name" value="<?php echo htmlspecialchars($f_user_name) ?>" />
<h1 class="header">
<?php printf(_("Update %s"), htmlspecialchars($f_user_name)) ?>
</h1>
<table class="striped nowrap" cellspacing="0" width="100%">
<?php if ($auth->hasCapability('update')): ?>
<tr>
<td width="1%" class="light rightAlign">
<?php echo Horde::label('user_name2', _("New Username (optional)")) ?>
</td>
<td>
<input type="text" id="user_name2" name="user_name2" value="<?php echo htmlspecialchars($f_user_name) ?>" />
</td>
</tr>
<tr>
<td class="rightAlign">
<?php echo Horde::label('user_pass_1', _("Password")) ?>
</td>
<td>
<input type="password" id="user_pass_1" name="user_pass_1" />
</td>
</tr>
<tr>
<td class="rightAlign">
<?php echo Horde::label('user_pass_2', _("Confirm Password")) ?>
</td>
<td>
<input type="password" id="user_pass_2" name="user_pass_2" />
</td>
</tr>
<?php endif; ?>
<tr>
<td class="rightAlign">
<?php echo Horde::label('user_fullname', _("Full Name")) ?>
</td>
<td>
<input type="text" id="user_fullname" name="user_fullname" value="<?php echo htmlspecialchars($identity->getValue('fullname')) ?>" />
</td>
</tr>
<tr>
<td class="rightAlign">
<?php echo Horde::label('user_email', _("Email Address")) ?>
</td>
<td>
<input type="text" id="user_email" name="user_email" value="<?php echo htmlspecialchars($identity->getValue('from_addr')) ?>" />
</td>
</tr>
<?php if ($auth->hasCapability('lock')): ?>
<tr>
<td class="rightAlign">
<?php echo Horde::label('user_locked', _("Lock User")) ?>
</td>
<td>
<input type="checkbox" id="user_locked" name="user_locked" value="1"<?php if ($auth->isLocked($f_user_name)) echo ' checked="checked"' ?> />
</td>
</tr>
<?php endif; ?>
</table>
<p class="horde-form-buttons">
<input type="submit" class="horde-default" name="submit" value="<?php echo _("Update user") ?>" />
<input type="reset" name="reset" value="<?php echo _("Reset") ?>" />
</p>
</form>