summaryrefslogtreecommitdiff
path: root/app/Template/twofactor/show.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/twofactor/show.php')
-rw-r--r--app/Template/twofactor/show.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/Template/twofactor/show.php b/app/Template/twofactor/show.php
index 412077b9..80f1e244 100644
--- a/app/Template/twofactor/show.php
+++ b/app/Template/twofactor/show.php
@@ -2,6 +2,10 @@
<h2><?= t('Two factor authentication') ?></h2>
</div>
+<?php if ($this->app->isAjax()): ?>
+ <?= $this->app->flashMessage() ?>
+<?php endif ?>
+
<?php if (! empty($secret) || ! empty($key_url)): ?>
<div class="panel">
<?php if (! empty($secret)): ?>
@@ -16,13 +20,13 @@
<?php endif ?>
<h3><?= t('Test your device') ?></h3>
+<div class="panel">
<form method="post" action="<?= $this->url->href('TwoFactorController', '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">
- <button type="submit" class="btn btn-blue"><?= t('Check my code') ?></button>
- </div>
+ <?= $this->modal->submitButtons(array('submitLabel' => t('Check my code'))) ?>
</form>
+</div>