Skip to content
Snippets Groups Projects
Commit 9a8dea57 authored by André Noack's avatar André Noack
Browse files

Resolve #3605 "Barriere in der Nutzung des Login-Formulars"

Closes #3605

Merge request studip/studip!2531
parent f08b2109
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ class AddTooltipFieldsForLogin extends Migration ...@@ -15,7 +15,7 @@ class AddTooltipFieldsForLogin extends Migration
$statement = DBManager::get()->prepare($query); $statement = DBManager::get()->prepare($query);
$statement->execute([ $statement->execute([
'name' => 'USERNAME_TOOLTIP_TEXT', 'name' => 'USERNAME_TOOLTIP_TEXT',
'value' => 'Geben Sie hier Ihren Stud.IP-Benutzernamen ein.', 'value' => '',
'type' => 'i18n', 'type' => 'i18n',
'section' => 'Loginseite', 'section' => 'Loginseite',
'range' => 'global', 'range' => 'global',
...@@ -24,31 +24,13 @@ class AddTooltipFieldsForLogin extends Migration ...@@ -24,31 +24,13 @@ class AddTooltipFieldsForLogin extends Migration
$statement->execute([ $statement->execute([
'name' => 'PASSWORD_TOOLTIP_TEXT', 'name' => 'PASSWORD_TOOLTIP_TEXT',
'value' => 'Geben Sie hier Ihr Stud.IP-Passwort ein. Achten Sie bei der Eingabe auf Groß- und Kleinschreibung.', 'value' => '',
'type' => 'i18n', 'type' => 'i18n',
'section' => 'Loginseite', 'section' => 'Loginseite',
'range' => 'global', 'range' => 'global',
'description' => 'Text für den Tooltip des Benutzernamens auf der Loginseite' 'description' => 'Text für den Tooltip des Benutzernamens auf der Loginseite'
]); ]);
$statement->execute([
'name' => 'USERNAME_TOOLTIP_ACTIVATED',
'value' => '1',
'type' => 'boolean',
'section' => 'Loginseite',
'range' => 'global',
'description' => 'Soll der Tooltip beim Benutzernamen auf der Loginseite sichtbar sein?'
]);
$statement->execute([
'name' => 'PASSWORD_TOOLTIP_ACTIVATED',
'value' => '1',
'type' => 'boolean',
'section' => 'Loginseite',
'range' => 'global',
'description' => 'Soll der Tooltip beim Passwort auf der Loginseite sichtbar sein?'
]);
} }
public function down() public function down()
...@@ -62,9 +44,7 @@ class AddTooltipFieldsForLogin extends Migration ...@@ -62,9 +44,7 @@ class AddTooltipFieldsForLogin extends Migration
AND `object_id` = MD5(`config`.`field`) AND `object_id` = MD5(`config`.`field`)
WHERE `field` IN ( WHERE `field` IN (
'USERNAME_TOOLTIP_TEXT', 'USERNAME_TOOLTIP_TEXT',
'PASSWORD_TOOLTIP_TEXT', 'PASSWORD_TOOLTIP_TEXT'
'USERNAME_TOOLTIP_ACTIVATED',
'PASSWORD_TOOLTIP_ACTIVATED'
)"; )";
DBManager::get()->exec($query); DBManager::get()->exec($query);
} }
......
...@@ -44,9 +44,7 @@ class AddLoginFaqConfig extends Migration ...@@ -44,9 +44,7 @@ class AddLoginFaqConfig extends Migration
AND `object_id` = MD5(`config`.`field`) AND `object_id` = MD5(`config`.`field`)
WHERE `field` IN ( WHERE `field` IN (
'LOGIN_FAQ_TITLE', 'LOGIN_FAQ_TITLE',
'LOGIN_FAQ_VISIBILITY', 'LOGIN_FAQ_VISIBILITY'
'USERNAME_TOOLTIP_ACTIVATED',
'PASSWORD_TOOLTIP_ACTIVATED'
)"; )";
DBManager::get()->exec($query); DBManager::get()->exec($query);
} }
......
...@@ -370,7 +370,7 @@ STUDIP.domReady(function () { ...@@ -370,7 +370,7 @@ STUDIP.domReady(function () {
[usernameInput, passwordInput].forEach((input) => { [usernameInput, passwordInput].forEach((input) => {
input.addEventListener('keydown', (event) => { input.addEventListener('keydown', (event) => {
if (event.getModifierState('CapsLock')) { if (typeof event.getModifierState === 'function' && event.getModifierState('CapsLock')) {
passwordCapsText.style.display = 'block'; passwordCapsText.style.display = 'block';
} else { } else {
passwordCapsText.style.display = 'none'; passwordCapsText.style.display = 'none';
......
...@@ -6,6 +6,8 @@ use Studip\Button; ...@@ -6,6 +6,8 @@ use Studip\Button;
* @var bool $hidden * @var bool $hidden
* @var string $uname; * @var string $uname;
*/ */
$username_tooltip_text = (string)Config::get()->USERNAME_TOOLTIP_TEXT;
$password_tooltip_text = (string)Config::get()->PASSWORD_TOOLTIP_TEXT;
?> ?>
<form class="default <?= $hidden ? 'hide' : '' ?>" <form class="default <?= $hidden ? 'hide' : '' ?>"
...@@ -18,8 +20,8 @@ use Studip\Button; ...@@ -18,8 +20,8 @@ use Studip\Button;
<section> <section>
<label> <label>
<span class="required"><?= _('Benutzername') ?></span> <span class="required"><?= _('Benutzername') ?></span>
<? if (Config::get()->USERNAME_TOOLTIP_ACTIVATED) : ?> <? if ($username_tooltip_text) : ?>
<?= tooltipIcon(htmlReady((string)Config::get()->USERNAME_TOOLTIP_TEXT)) ?> <?= tooltipIcon($username_tooltip_text) ?>
<? endif ?> <? endif ?>
<input type="text" <?= (mb_strlen($uname) || $hidden) ? '' : 'autofocus' ?> <input type="text" <?= (mb_strlen($uname) || $hidden) ? '' : 'autofocus' ?>
id="loginname" id="loginname"
...@@ -28,17 +30,18 @@ use Studip\Button; ...@@ -28,17 +30,18 @@ use Studip\Button;
size="20" size="20"
spellcheck="false" spellcheck="false"
autocapitalize="off" autocapitalize="off"
title="<?= _('Der Benutzername entspricht nicht den Anforderungen') ?>" autocomplete="username"
required> required>
</label> </label>
<label for="password" style="position: relative"> <label for="password" style="position: relative">
<span class="required"><?= _('Passwort') ?></span> <span class="required"><?= _('Passwort') ?></span>
<? if (Config::get()->PASSWORD_TOOLTIP_ACTIVATED) : ?> <? if ($password_tooltip_text) : ?>
<?= tooltipIcon(htmlReady((string)Config::get()->PASSWORD_TOOLTIP_TEXT)) ?> <?= tooltipIcon($password_tooltip_text) ?>
<? endif ?> <? endif ?>
<input type="password" <?= mb_strlen($uname) && !$hidden ? 'autofocus' : '' ?> <input type="password" <?= mb_strlen($uname) && !$hidden ? 'autofocus' : '' ?>
id="password" id="password"
name="password" name="password"
autocomplete="current-password"
size="20" size="20"
required> required>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment