diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-12-12 10:47:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-12 10:47:25 +0100 |
commit | 5e0f820029fd3437ed01a9e228eea679fd87fabc (patch) | |
tree | 37c76a4d8ef778ccf26ea823e4237dc40cc70e1b /core | |
parent | a33a4c53ef9e37df3b69dfad148bf50bb74020b7 (diff) | |
parent | eda4d559f8e44f0b0b8b291a5af377d40df59626 (diff) | |
download | nextcloud-server-5e0f820029fd3437ed01a9e228eea679fd87fabc.tar.gz nextcloud-server-5e0f820029fd3437ed01a9e228eea679fd87fabc.zip |
Add accessibility label to show password checkbox (#16642)
Add accessibility label to show password checkbox
Diffstat (limited to 'core')
-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> |