Do not show projects dropdown when prompting the 2FA code

This commit is contained in:
Frédéric Guillot 2019-01-30 21:17:30 -08:00
parent 322383b084
commit a1c437bce8
2 changed files with 15 additions and 9 deletions

View File

@ -177,6 +177,7 @@ class TwoFactorController extends UserViewController
$this->response->html($this->helper->layout->app('twofactor/check', array(
'title' => t('Check two factor authentication code'),
'no_layout' => true,
)));
}

View File

@ -1,10 +1,15 @@
<form method="post" action="<?= $this->url->href('TwoFactorController', 'check', array('user_id' => $this->user->getId())) ?>" 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>
<section class="page">
<div class="page-header">
<h2><?= t('Two factor authentication') ?></h2>
</div>
</form>
<form method="post" action="<?= $this->url->href('TwoFactorController', 'check', array('user_id' => $this->user->getId())) ?>" 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>
</form>
</section>