2020-08-14 18:27:57 +00:00
|
|
|
<?= helper('form') ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->extend($config->viewLayout) ?>
|
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('Auth.forgotPassword') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2020-08-14 18:27:57 +00:00
|
|
|
<p class="mb-4 text-gray-600"><?= lang('Auth.enterEmailForInstructions') ?></p>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2020-08-14 18:27:57 +00:00
|
|
|
<?= form_open(route_to('forgot'), ['class' => 'flex flex-col']) ?>
|
|
|
|
<?= csrf_field() ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2020-08-14 18:27:57 +00:00
|
|
|
<?= form_label(lang('Auth.emailAddress'), 'email') ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'email',
|
|
|
|
'name' => 'email',
|
|
|
|
'class' => 'form-input mb-4',
|
|
|
|
'type' => 'email',
|
|
|
|
'required' => 'required',
|
|
|
|
]) ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2020-08-14 18:27:57 +00:00
|
|
|
<?= form_button([
|
|
|
|
'content' => lang('Auth.sendInstructions'),
|
|
|
|
'type' => 'submit',
|
|
|
|
'class' => 'px-4 py-2 ml-auto border',
|
|
|
|
]) ?>
|
|
|
|
|
|
|
|
<?= form_close() ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|