summaryrefslogtreecommitdiff
path: root/app/Template/user/password.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/user/password.php')
-rw-r--r--app/Template/user/password.php20
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>