challenge.php 589 B

1234567891011121314
  1. <?php
  2. style('twofactor_backupcodes', 'style');
  3. ?>
  4. <img class="two-factor-icon" src="<?php p(image_path('core', 'actions/more-white.svg')) ?>" alt="" />
  5. <p><?php p($l->t('Use one of the backup codes you saved when setting up two-factor authentication.')) ?></p>
  6. <form method="POST" class="challenge-form">
  7. <input type="text" class="challenge" name="challenge" required="required" autofocus autocomplete="off" autocapitalize="off" placeholder="<?php p($l->t('Backup code')) ?>">
  8. <button class="two-factor-submit primary" type="submit">
  9. <?php p($l->t('Submit')); ?>
  10. </button>
  11. </form>