summaryrefslogtreecommitdiff
path: root/app/Template/twofactor/check.php
blob: c29c012968aed5d95eac22c70aa41fdf84bea117 (plain)
1
2
3
4
5
6
7
8
9
10
<form method="post" action="<?= $this->u('twofactor', 'check', array('user_id' => $this->userSession->getId())) ?>" autocomplete="off">

    <?= $this->formCsrf() ?>
    <?= $this->formLabel(t('Code'), 'code') ?>
    <?= $this->formText('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>