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

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

<form method="POST" class="sms-2fa-form">
	<input type="text"
		   class="challenge"
		   name="challenge"
		   required="required"
		   autofocus
		   autocomplete="off"
		   autocapitalize="off"
		   value="<?php echo isset($_['secret']) ? $_['secret'] : '' ?>"
		   placeholder="<?php p($l->t('Authentication code')) ?>">
	<input type="submit" class="confirm-inline icon-confirm" value="">
	<p><?php p($l->t('An access code has been sent to %s', [$_['phone']])); ?></p>
</form>