nextcloud/core/templates/twofactorselectchallenge.php

33 lines
1.2 KiB
PHP
Raw Normal View History

2016-08-27 12:33:15 +03:00
<div class="warning">
2016-08-27 13:27:05 +03:00
<h2 class="two-factor-header"><?php p($l->t('Two-factor authentication')) ?></h2>
<p><?php p($l->t('Enhanced security is enabled for your account. Please authenticate using a second factor.')) ?></p>
2016-08-27 12:33:15 +03:00
<p>
<ul>
<?php foreach ($_['providers'] as $provider): ?>
<li>
2016-08-27 13:27:05 +03:00
<a class="button two-factor-provider"
2016-08-27 12:33:15 +03:00
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>
<p class="two-factor-link">
<a class="button" href="<?php print_unescaped($_['logout_url']); ?>"><?php p($l->t('Cancel log in')) ?></a>
<?php if (!is_null($_['backupProvider'])): ?>
<a class="button" href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge',
[
'challengeProviderId' => $_['backupProvider']->getId(),
'redirect_url' => $_['redirect_url'],
]
)) ?>"><?php p($l->t('Use backup code')) ?></a>
<?php endif; ?>
</p>
2016-08-27 12:33:15 +03:00
</div>