diff options
author | Brent Nesbit <github@nesbit.me> | 2019-08-02 18:27:38 +0000 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-12-10 18:37:35 +0100 |
commit | eda4d559f8e44f0b0b8b291a5af377d40df59626 (patch) | |
tree | 019ffd22a716fbf6f59ff7cc34569963b30535c7 /core/templates | |
parent | 5aacb43411a345ed466c640ce4d4ca854b38b32c (diff) | |
download | nextcloud-server-eda4d559f8e44f0b0b8b291a5af377d40df59626.tar.gz nextcloud-server-eda4d559f8e44f0b0b8b291a5af377d40df59626.zip |
Issue 15965 - Show password checkbox doesn't provide label or accessible name
Signed-off-by: Brent Nesbit <github@nesbit.me>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index bdc06c54086..eb224364844 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -50,7 +50,7 @@ script('core', [ autocomplete="off" autocapitalize="none" autocorrect="off" required> <label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label> <input type="checkbox" id="show" class="hidden-visually" name="show"> - <label for="show"></label> + <label for="show" class="hidden-visually"><?php p($l->t( 'Show password')); ?></label> </p> </fieldset> |