aboutsummaryrefslogtreecommitdiffstats
path: root/core/templates/twofactorselectchallenge.php
blob: 4209beac4e69e1bbe1f1f58d471aa6b4518e7598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<fieldset class="warning">
		<legend><strong><?php p($l->t('Two-step verification')) ?></strong></legend>
		<p><?php p($l->t('Enhanced security has been enabled for your account. Please authenticate using a second factor.')) ?></p>
</fieldset>
<fieldset class="warning">
<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>
</fieldset>
<a class="two-factor-cancel" <?php print_unescaped($_['logout_attribute']); ?>><?php p($l->t('Cancel login')) ?></a>