twofactorsetupchallenge.php 506 B

12345678910111213141516
  1. <?php
  2. /** @var \OCP\IL10N $l */
  3. /** @var array $_ */
  4. /** @var \OCP\Authentication\TwoFactorAuth\IProvider $provider */
  5. $provider = $_['provider'];
  6. /* @var string $template */
  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 login')) ?>
  14. </a></p>
  15. </div>