nextcloud/core/templates/twofactorselectchallenge.php

23 lines
818 B
PHP
Raw Normal View History

2016-08-27 12:33:15 +03:00
<div class="warning">
<h2 class="two-factor-header"><?php p($l->t('Two-step verification')) ?></h2>
<p><?php p($l->t('Enhanced security has been enabled for your account. Please authenticate using a second factor.')) ?></p>
<p>
<ul>
<?php foreach ($_['providers'] as $provider): ?>
<li>
<a class="two-factor-provider"
href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge',
[
'challengeProviderId' => $provider->getId(),
'redirect_url' => $_['redirect_url'],
]
)) ?>">
<?php p($provider->getDescription()) ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</p>
</div>
2016-08-27 12:10:36 +03:00
<a class="two-factor-cancel" <?php print_unescaped($_['logout_attribute']); ?>><?php p($l->t('Cancel log in')) ?></a>