Template helpers refactoring
This commit is contained in:
@@ -2,25 +2,25 @@
|
||||
<h2><?= t('Password modification') ?></h2>
|
||||
</div>
|
||||
|
||||
<form method="post" action="<?= Helper\u('user', 'password', array('user_id' => $user['id'])) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->u('user', 'password', array('user_id' => $user['id'])) ?>" autocomplete="off">
|
||||
|
||||
<?= Helper\form_hidden('id', $values) ?>
|
||||
<?= Helper\form_csrf() ?>
|
||||
<?= $this->formHidden('id', $values) ?>
|
||||
<?= $this->formCsrf() ?>
|
||||
|
||||
<div class="alert alert-error">
|
||||
<?= Helper\form_label(t('Current password for the user "%s"', Helper\get_username()), 'current_password') ?>
|
||||
<?= Helper\form_password('current_password', $values, $errors) ?><br/>
|
||||
<?= $this->formLabel(t('Current password for the user "%s"', $this->getFullname()), 'current_password') ?>
|
||||
<?= $this->formPassword('current_password', $values, $errors) ?><br/>
|
||||
</div>
|
||||
|
||||
<?= Helper\form_label(t('New password for the user "%s"', Helper\get_username($user)), 'password') ?>
|
||||
<?= Helper\form_password('password', $values, $errors) ?><br/>
|
||||
<?= $this->formLabel(t('New password for the user "%s"', $this->getFullname($user)), 'password') ?>
|
||||
<?= $this->formPassword('password', $values, $errors) ?><br/>
|
||||
|
||||
<?= Helper\form_label(t('Confirmation'), 'confirmation') ?>
|
||||
<?= Helper\form_password('confirmation', $values, $errors) ?><br/>
|
||||
<?= $this->formLabel(t('Confirmation'), 'confirmation') ?>
|
||||
<?= $this->formPassword('confirmation', $values, $errors) ?><br/>
|
||||
|
||||
<div class="form-actions">
|
||||
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
||||
<?= t('or') ?>
|
||||
<?= Helper\a(t('cancel'), 'user', 'show', array('user_id' => $user['id'])) ?>
|
||||
<?= $this->a(t('cancel'), 'user', 'show', array('user_id' => $user['id'])) ?>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user