Merge pull request #11497 from nextcloud/enhancement/enforced-2fa-no-provider-hint
Add hint for locked accounts where 2FA is enforced but not configured
This commit is contained in:
commit
816c474592
|
@ -6,6 +6,15 @@
|
|||
<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 (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: ?>
|
||||
<p>
|
||||
<ul>
|
||||
<?php foreach ($_['providers'] as $provider): ?>
|
||||
|
@ -23,6 +32,7 @@
|
|||
<?php endforeach; ?>
|
||||
</ul>
|
||||
</p>
|
||||
<?php endif ?>
|
||||
<p class="two-factor-link">
|
||||
<a class="button" href="<?php print_unescaped($_['logout_url']); ?>"><?php p($l->t('Cancel log in')) ?></a>
|
||||
<?php if (!is_null($_['backupProvider'])): ?>
|
||||
|
|
Loading…
Reference in New Issue