twofactorsetupchallenge.php 505 B

12345678910111213141516
  1. <?php
  2. /** @var $l \OCP\IL10N */
  3. /** @var $_ array */
  4. /* @var $provider OCP\Authentication\TwoFactorAuth\IProvider */
  5. $provider = $_['provider'];
  6. /* @var $template string */
  7. $template = $_['template'];
  8. ?>
  9. <div class="body-login-container update">
  10. <h2 class="two-factor-header"><?php p($provider->getDisplayName()); ?></h2>
  11. <?php print_unescaped($template); ?>
  12. <p><a class="two-factor-secondary" href="<?php print_unescaped($_['logout_url']); ?>">
  13. <?php p($l->t('Cancel log in')) ?>
  14. </a></p>
  15. </div>