Welcome to mirror list, hosted at ThFree Co, Russian Federation.

challenge.php « templates - github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 924524fd21f7b5be49b42aa25cb9e20564e14236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
style('twofactor_totp', 'style');
?>

<img class="two-factor-icon" src="<?php print_unescaped(image_path('twofactor_totp', 'app.svg')); ?>" alt="">

<p><?php p($l->t('Get the authentication code from the two-factor authentication app on your device.')) ?></p>

<form method="POST" class="totp-form">
	<input type="tel" minlength="6" maxlength="10" name="challenge" required="required" autofocus autocomplete="one-time-code" autocapitalize="off" placeholder="<?php p($l->t('Authentication code')) ?>">
	<button class="primary two-factor-submit" type="submit">
		<?php p($l->t('Submit')); ?>
	</button>
</form>