forked from codeigniter4/shield
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathemail_2fa_show.php
More file actions
37 lines (27 loc) · 1.31 KB
/
email_2fa_show.php
File metadata and controls
37 lines (27 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?= $this->extend(config('Auth')->views['layout']) ?>
<?= $this->section('title') ?><?= lang('Auth.email2FATitle') ?> <?= $this->endSection() ?>
<?= $this->section('main') ?>
<div class="container d-flex justify-content-center p-5">
<div class="card col-12 col-md-5 shadow-sm">
<div class="card-body">
<h5 class="card-title mb-5"><?= lang('Auth.email2FATitle') ?></h5>
<p><?= lang('Auth.confirmEmailAddress') ?></p>
<?php if (session('error')) : ?>
<div class="alert alert-danger"><?= esc(session('error')) ?></div>
<?php endif ?>
<form action="<?= url_to('auth-action-handle') ?>" method="post">
<?= csrf_field() ?>
<!-- Email -->
<div class="mb-2">
<input type="email" class="form-control" name="email"
inputmode="email" autocomplete="email" placeholder="<?= lang('Auth.email') ?>"
value="<?= old('email', $user->email) ?>" required>
</div>
<div class="d-grid col-8 mx-auto m-3">
<button type="submit" class="btn btn-primary btn-block"><?= lang('Auth.send') ?></button>
</div>
</form>
</div>
</div>
</div>
<?= $this->endSection() ?>