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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-08-27 00:20:00 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2016-08-27 12:12:12 +0300
commitdc57b89f37bd616e9f57f8ec03558763aec4e9ec (patch)
tree802bd4d7f82b5cc33653f0b538826d228abf91c4 /core
parentc40df1d9904be51db00bdcf8bc9b3f85511fb24c (diff)
reorder 2fa challenge HTML
Diffstat (limited to 'core')
-rw-r--r--core/templates/twofactorshowchallenge.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/templates/twofactorshowchallenge.php b/core/templates/twofactorshowchallenge.php
index c5ee9aca4b4..7a921a41506 100644
--- a/core/templates/twofactorshowchallenge.php
+++ b/core/templates/twofactorshowchallenge.php
@@ -9,12 +9,12 @@ $provider = $_['provider'];
$template = $_['template'];
?>
-<fieldset class="warning">
- <legend><strong><?php p($provider->getDisplayName()); ?></strong></legend>
+<div class="warning">
+ <h2><?php p($provider->getDisplayName()); ?></h2>
<p><?php p($l->t('Please authenticate using the selected factor.')) ?></p>
-</fieldset>
-<?php if ($error): ?>
-<span class="warning"><?php p($l->t('An error occured while verifying the token')); ?></span>
-<?php endif; ?>
-<?php print_unescaped($template); ?>
+ <?php if ($error): ?>
+ <p><?php p($l->t('An error occured while verifying the token')); ?></p>
+ <?php endif; ?>
+ <?php print_unescaped($template); ?>
+</div>
<a class="two-factor-cancel" <?php print_unescaped($_['logout_attribute']); ?>><?php p($l->t('Cancel login')) ?></a>