Explorar el Código

Fix design of 2FA login screens

* Fix rending of empty selection screen (ul missing)
* Fix rendering of backup codes inputs

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v15.0.0beta1
Christoph Wurst hace 5 años
padre
commit
335a461250
Se han modificado 2 ficheros con 11 adiciones y 11 borrados
  1. 2
    2
      core/css/guest.css
  2. 9
    9
      core/templates/twofactorselectchallenge.php

+ 2
- 2
core/css/guest.css Ver fichero

@@ -103,7 +103,7 @@ body {
/* Default FORM */
form {
position: relative;
width: 280px;
width: 100%;
margin: auto;
padding: 0;
}
@@ -433,7 +433,7 @@ form .warning input[type='checkbox']+label {
margin: 0 auto;
}
.two-factor-submit {
width: 280px;
width: 100%;
padding: 10px;
margin: 0 0 5px 0;
border-radius: 3px;

+ 9
- 9
core/templates/twofactorselectchallenge.php Ver fichero

@@ -6,17 +6,17 @@
<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 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"

Cargando…
Cancelar
Guardar