mirror of
https://github.com/nextcloud/server.git
synced 2025-02-11 03:29:29 +00:00
20 lines
743 B
PHP
20 lines
743 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
style('twofactor_backupcodes', 'style');
|
|
?>
|
|
|
|
<img class="two-factor-icon" src="<?php p(image_path('core', 'actions/more-white.svg')) ?>" alt="" />
|
|
|
|
<p><?php p($l->t('Use one of the backup codes you saved when setting up two-factor authentication.')) ?></p>
|
|
|
|
<form method="POST" class="challenge-form">
|
|
<input type="text" class="challenge" name="challenge" required="required" autofocus autocomplete="off" autocapitalize="off" placeholder="<?php p($l->t('Backup code')) ?>">
|
|
<button class="two-factor-submit primary" type="submit">
|
|
<?php p($l->t('Submit')); ?>
|
|
</button>
|
|
</form>
|