summaryrefslogtreecommitdiff
path: root/app/Template/twofactor/show.php
blob: d6d8f40510aadec4a72363ba4a2d8b97f6cc6ff4 (plain)
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
<div class="page-header">
    <h2><?= t('Two factor authentication') ?></h2>
</div>

<?php if (! empty($secret) || ! empty($qrcode_url) || ! empty($key_url)): ?>
<div class="listing">
    <?php if (! empty($secret)): ?>
        <p><?= t('Secret key: ') ?><strong><?= $this->e($secret) ?></strong></p>
    <?php endif ?>

    <?php if (! empty($qrcode_url)): ?>
        <p><br><img src="<?= $qrcode_url ?>"/><br><br></p>
    <?php endif ?>

    <?php if (! empty($key_url)): ?>
        <p><?= t('This QR code contains the key URI: ') ?><a href="<?= $this->e($key_url) ?>"><?= $this->e($key_url) ?></a></p>
    <?php endif ?>
</div>
<?php endif ?>

<h3><?= t('Test your device') ?></h3>
<form method="post" action="<?= $this->url->href('twofactor', 'test', array('user_id' => $user['id'])) ?>" autocomplete="off">

    <?= $this->form->csrf() ?>
    <?= $this->form->label(t('Code'), 'code') ?>
    <?= $this->form->text('code', array(), array(), array('placeholder="123456"', 'autofocus'), 'form-numeric') ?>

    <div class="form-actions">
        <input type="submit" value="<?= t('Check my code') ?>" class="btn btn-blue">
    </div>
</form>