17 lines
723 B
PHP
17 lines
723 B
PHP
<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, ['autocomplete="new-password"']) ?>
|
|
|
|
<?= $this->form->label(t('Confirmation'), 'confirmation') ?>
|
|
<?= $this->form->password('confirmation', $values, $errors, ['autocomplete="new-password"']) ?>
|
|
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-blue"><?= t('Change Password') ?></button>
|
|
</div>
|
|
</form>
|
|
</div>
|