diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-08-26 23:20:00 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-08-27 11:12:12 +0200 |
commit | dc57b89f37bd616e9f57f8ec03558763aec4e9ec (patch) | |
tree | 802bd4d7f82b5cc33653f0b538826d228abf91c4 /core/templates/twofactorshowchallenge.php | |
parent | c40df1d9904be51db00bdcf8bc9b3f85511fb24c (diff) | |
download | nextcloud-server-dc57b89f37bd616e9f57f8ec03558763aec4e9ec.tar.gz nextcloud-server-dc57b89f37bd616e9f57f8ec03558763aec4e9ec.zip |
reorder 2fa challenge HTML
Diffstat (limited to 'core/templates/twofactorshowchallenge.php')
-rw-r--r-- | core/templates/twofactorshowchallenge.php | 14 |
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> |