diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-08-27 11:33:15 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-08-27 11:33:15 +0200 |
commit | 4a9167315435a37f12b8c47ec3a9d9c81183e321 (patch) | |
tree | cd80102ff829b6471baaf186b889e427a35cf4ab | |
parent | c93c5d142ee0185af01536b967839c4b2eff1b48 (diff) | |
download | nextcloud-server-4a9167315435a37f12b8c47ec3a9d9c81183e321.tar.gz nextcloud-server-4a9167315435a37f12b8c47ec3a9d9c81183e321.zip |
use centered h2 for 2FA page headers
-rw-r--r-- | core/css/styles.css | 4 | ||||
-rw-r--r-- | core/templates/twofactorselectchallenge.php | 42 | ||||
-rw-r--r-- | core/templates/twofactorshowchallenge.php | 2 |
3 files changed, 26 insertions, 22 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 428688060b7..38de922ac9d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -32,6 +32,10 @@ body { background-size: cover; } +.two-factor-header { + text-align: center; +} + .two-factor-provider { text-align: center; width: 100%; diff --git a/core/templates/twofactorselectchallenge.php b/core/templates/twofactorselectchallenge.php index 6a6438ca56a..1c8fcd362e5 100644 --- a/core/templates/twofactorselectchallenge.php +++ b/core/templates/twofactorselectchallenge.php @@ -1,22 +1,22 @@ -<fieldset class="warning"> - <legend><strong><?php p($l->t('Two-step verification')) ?></strong></legend> - <p><?php p($l->t('Enhanced security has been enabled for your account. Please authenticate using a second factor.')) ?></p> -</fieldset> -<fieldset class="warning"> -<ul> -<?php foreach ($_['providers'] as $provider): ?> - <li> - <a class="two-factor-provider" - href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge', - [ - 'challengeProviderId' => $provider->getId(), - 'redirect_url' => $_['redirect_url'], - ] - )) ?>"> - <?php p($provider->getDescription()) ?> - </a> - </li> -<?php endforeach; ?> -</ul> -</fieldset> +<div class="warning"> + <h2 class="two-factor-header"><?php p($l->t('Two-step verification')) ?></h2> + <p><?php p($l->t('Enhanced security has been enabled for your account. Please authenticate using a second factor.')) ?></p> + <p> + <ul> + <?php foreach ($_['providers'] as $provider): ?> + <li> + <a class="two-factor-provider" + href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge', + [ + 'challengeProviderId' => $provider->getId(), + 'redirect_url' => $_['redirect_url'], + ] + )) ?>"> + <?php p($provider->getDescription()) ?> + </a> + </li> + <?php endforeach; ?> + </ul> + </p> +</div> <a class="two-factor-cancel" <?php print_unescaped($_['logout_attribute']); ?>><?php p($l->t('Cancel log in')) ?></a> diff --git a/core/templates/twofactorshowchallenge.php b/core/templates/twofactorshowchallenge.php index 7da8f743cbb..713032d923d 100644 --- a/core/templates/twofactorshowchallenge.php +++ b/core/templates/twofactorshowchallenge.php @@ -10,7 +10,7 @@ $template = $_['template']; ?> <div class="warning"> - <h2><?php p($provider->getDisplayName()); ?></h2> + <h2 class="two-factor-header"><?php p($provider->getDisplayName()); ?></h2> <?php if ($error): ?> <p><?php p($l->t('An error occured while verifying the token')); ?></p> <?php endif; ?> |