diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-03-11 15:24:34 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-03-11 15:24:34 -0500 |
commit | a22b8f3dc73555800caf55768f04a7a2ce4af7f2 (patch) | |
tree | 60257cb9b508da83be5a9477c434fb53cc3c6f6d /app/Template/twofactor | |
parent | 469112918d0cfa6a43a7fdb829cd19bdf85cfcbe (diff) |
Make user actions available from contextual menu
Diffstat (limited to 'app/Template/twofactor')
-rw-r--r-- | app/Template/twofactor/show.php | 10 |
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> |