diff options
Diffstat (limited to 'app/Templates/user_password.php')
-rw-r--r-- | app/Templates/user_password.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/app/Templates/user_password.php b/app/Templates/user_password.php deleted file mode 100644 index 5da38595..00000000 --- a/app/Templates/user_password.php +++ /dev/null @@ -1,23 +0,0 @@ -<div class="page-header"> - <h2><?= t('Password modification') ?></h2> -</div> - -<form method="post" action="?controller=user&action=password&user_id=<?= $user['id'] ?>" autocomplete="off"> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_csrf() ?> - - <?= 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('New password for the user "%s"', Helper\get_username($user)), 'password') ?> - <?= Helper\form_password('password', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Confirmation'), 'confirmation') ?> - <?= Helper\form_password('confirmation', $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>"><?= t('cancel') ?></a> - </div> - -</form>
\ No newline at end of file |