-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Show icon if no provider is available * Reduce shown text if no provider available * Fix login button icons * Make backup codes button primary if the only options to log in Signed-off-by: Christoph Wurst <[email protected]>
- Loading branch information
1 parent
67d04f2
commit ae2cd50
Showing
3 changed files
with
100 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,66 @@ | ||
<div class="warning"> | ||
<?php | ||
$noProviders = empty($_['providers']); | ||
?> | ||
<div class="body-login-container update"> | ||
<h2 class="two-factor-header"><?php p($l->t('Two-factor authentication')) ?></h2> | ||
<?php if (!$noProviders): ?> | ||
<p><?php p($l->t('Enhanced security is enabled for your account. Choose a second factor for authentication:')) ?></p> | ||
<?php endif ?> | ||
<?php if ($_['providerMissing']): ?> | ||
<p> | ||
<strong><?php p($l->t('Could not load at least one of your enabled two-factor auth methods. Please contact your admin.')) ?></strong> | ||
</p> | ||
<?php endif; ?> | ||
<?php if ($noProviders): ?> | ||
<img class="two-factor-icon" src="<?php p(image_path('core', 'actions/password-white.svg')) ?>" alt="" /> | ||
<p> | ||
<ul> | ||
<?php if (empty($_['providers'])): ?> | ||
<p> | ||
<?php if (is_null($_['backupProvider'])): ?> | ||
<strong><?php p($l->t('Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance.')) ?></strong> | ||
<?php else: ?> | ||
<strong><?php p($l->t('Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance.')) ?></strong> | ||
<?php endif; ?> | ||
</p> | ||
<?php else: ?> | ||
<?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 | ||
if ($provider instanceof \OCP\Authentication\TwoFactorAuth\IProvidesIcons) { | ||
$icon = $provider->getLightIcon(); | ||
} else { | ||
$icon = image_path('core', 'actions/password-white.svg'); | ||
} | ||
?> | ||
<img src="<?php p($icon) ?>" alt="" /> | ||
<div> | ||
<h3><?php p($provider->getDisplayName()) ?></h3> | ||
<p><?php p($provider->getDescription()) ?></p> | ||
</div> | ||
</a> | ||
</li> | ||
<?php endforeach; ?> | ||
<?php if (is_null($_['backupProvider'])): ?> | ||
<strong><?php p($l->t('Two-factor authentication is enforced but has not been configured on your account. Contact your admin for assistance.')) ?></strong> | ||
<?php else: ?> | ||
<strong><?php p($l->t('Two-factor authentication is enforced but has not been configured on your account. Use one of your backup codes to log in or contact your admin for assistance.')) ?></strong> | ||
<?php endif; ?> | ||
</p> | ||
<?php else: ?> | ||
<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 | ||
if ($provider instanceof \OCP\Authentication\TwoFactorAuth\IProvidesIcons) { | ||
$icon = $provider->getLightIcon(); | ||
} else { | ||
$icon = image_path('core', 'actions/password-white.svg'); | ||
} | ||
?> | ||
<img src="<?php p($icon) ?>" alt="" /> | ||
<div> | ||
<h3><?php p($provider->getDisplayName()) ?></h3> | ||
<p><?php p($provider->getDescription()) ?></p> | ||
</div> | ||
</a> | ||
</li> | ||
<?php endforeach; ?> | ||
</ul> | ||
<?php endif ?> | ||
<?php if (!is_null($_['backupProvider'])): ?> | ||
<li> | ||
<a class="two-factor-provider two-factor-secondary" href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge', | ||
[ | ||
'challengeProviderId' => $_['backupProvider']->getId(), | ||
'redirect_url' => $_['redirect_url'], | ||
] | ||
)) ?>"> | ||
<div> | ||
<p><?php p($l->t('Use backup code')) ?></p> | ||
</div> | ||
</a> | ||
</li> | ||
<?php endif; ?> | ||
<li> | ||
<a class="two-factor-provider two-factor-secondary" href="<?php print_unescaped($_['logout_url']); ?>"> | ||
<div> | ||
<p><?php p($l->t('Cancel log in')) ?></p> | ||
</div> | ||
</a> | ||
</li> | ||
</ul> | ||
<?php if (!is_null($_['backupProvider'])): ?> | ||
<p> | ||
<a class="<?php if($noProviders): ?>button primary two-factor-primary<?php else: ?>two-factor-secondary<?php endif ?>" href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge', | ||
[ | ||
'challengeProviderId' => $_['backupProvider']->getId(), | ||
'redirect_url' => $_['redirect_url'], | ||
] | ||
)) ?>"> | ||
<?php p($l->t('Use backup code')) ?> | ||
</a> | ||
</p> | ||
<?php endif; ?> | ||
<p><a class="two-factor-secondary" href="<?php print_unescaped($_['logout_url']); ?>"> | ||
<?php p($l->t('Cancel log in')) ?> | ||
</a></p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters