summaryrefslogtreecommitdiff
path: root/app/Template/password_reset/change.php
blob: 80a035da6fad25c2bf03bf23e4fe0d95f5a5adf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="form-login">
    <h2><?= t('Password Reset') ?></h2>
    <form method="post" action="<?= $this->url->href('PasswordResetController', 'update', array('token' => $token)) ?>">
        <?= $this->form->csrf() ?>

        <?= $this->form->label(t('New password'), 'password') ?>
        <?= $this->form->password('password', $values, $errors) ?>

        <?= $this->form->label(t('Confirmation'), 'confirmation') ?>
        <?= $this->form->password('confirmation', $values, $errors) ?>

        <div class="form-actions">
            <button type="submit" class="btn btn-blue"><?= t('Change Password') ?></button>
        </div>
    </form>
</div>