diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
commit | eeac2329baab1fdae7cbf6c707ed2ffd8beb4c1b (patch) | |
tree | 511c2fe47f8fbb1ea90e59e7a7a7f5e3530aa9ed /app/Template/user/password.php | |
parent | 65e9e5d1bed9f88ecfd43eb2c1e780a7c22c151f (diff) |
Helpers refactoring
Diffstat (limited to 'app/Template/user/password.php')
-rw-r--r-- | app/Template/user/password.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/app/Template/user/password.php b/app/Template/user/password.php index 14de0d42..3ef28d33 100644 --- a/app/Template/user/password.php +++ b/app/Template/user/password.php @@ -2,25 +2,25 @@ <h2><?= t('Password modification') ?></h2> </div> -<form method="post" action="<?= $this->u('user', 'password', array('user_id' => $user['id'])) ?>" autocomplete="off"> +<form method="post" action="<?= $this->url->href('user', 'password', array('user_id' => $user['id'])) ?>" autocomplete="off"> - <?= $this->formHidden('id', $values) ?> - <?= $this->formCsrf() ?> + <?= $this->form->hidden('id', $values) ?> + <?= $this->form->csrf() ?> <div class="alert alert-error"> - <?= $this->formLabel(t('Current password for the user "%s"', $this->getFullname()), 'current_password') ?> - <?= $this->formPassword('current_password', $values, $errors) ?><br/> + <?= $this->form->label(t('Current password for the user "%s"', $this->user->getFullname()), 'current_password') ?> + <?= $this->form->password('current_password', $values, $errors) ?><br/> </div> - <?= $this->formLabel(t('New password for the user "%s"', $this->getFullname($user)), 'password') ?> - <?= $this->formPassword('password', $values, $errors) ?><br/> + <?= $this->form->label(t('New password for the user "%s"', $this->user->getFullname($user)), 'password') ?> + <?= $this->form->password('password', $values, $errors) ?><br/> - <?= $this->formLabel(t('Confirmation'), 'confirmation') ?> - <?= $this->formPassword('confirmation', $values, $errors) ?><br/> + <?= $this->form->label(t('Confirmation'), 'confirmation') ?> + <?= $this->form->password('confirmation', $values, $errors) ?><br/> <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> - <?= $this->a(t('cancel'), 'user', 'show', array('user_id' => $user['id'])) ?> + <?= $this->url->link(t('cancel'), 'user', 'show', array('user_id' => $user['id'])) ?> </div> </form> |