diff options
Diffstat (limited to 'templates/user_edit.php')
-rw-r--r-- | templates/user_edit.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/user_edit.php b/templates/user_edit.php index c65f3381..0c82793d 100644 --- a/templates/user_edit.php +++ b/templates/user_edit.php @@ -13,6 +13,9 @@ <?= Helper\form_label(t('Username'), 'username') ?> <?= Helper\form_text('username', $values, $errors, array('required')) ?><br/> + <?= Helper\form_label(t('Current password for the user "%s"', Helper\get_username()), 'current_password') ?> + <?= Helper\form_password('current_password', $values, $errors) ?><br/> + <?= Helper\form_label(t('Password'), 'password') ?> <?= Helper\form_password('password', $values, $errors) ?><br/> |