diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-04-18 16:14:09 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-04-18 16:14:09 +0200 |
commit | 0f9ba852bc7e8bafecbd0bcd73099892645ac79e (patch) | |
tree | f7f099661d7841a8990e246d9eefc21210398ef0 | |
parent | 1c00f82ea5b6502a0cb4ac82c80927ca88c58105 (diff) | |
download | nextcloud-server-0f9ba852bc7e8bafecbd0bcd73099892645ac79e.tar.gz nextcloud-server-0f9ba852bc7e8bafecbd0bcd73099892645ac79e.zip |
Fix form labels and main landmark on log in page
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r-- | core/templates/layout.guest.php | 4 | ||||
-rw-r--r-- | core/templates/login.php | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 2f94f942171..a53cd82fcfd 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -37,7 +37,9 @@ </div> </header> <?php endif; ?> - <?php print_unescaped($_['content']); ?> + <main> + <?php print_unescaped($_['content']); ?> + </main> </div> </div> <footer role="contentinfo"> diff --git a/core/templates/login.php b/core/templates/login.php index ee1ce6a6870..8fc68edb92d 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -37,6 +37,7 @@ script('core', 'merged-login'); <p class="grouptop<?php if (!empty($_['invalidpassword'])) { ?> shake<?php } ?>"> <input type="text" name="user" id="user" placeholder="<?php p($l->t('Username or email')); ?>" + aria-label="<?php p($l->t('Username or email')); ?>" value="<?php p($_['loginName']); ?>" <?php p($_['user_autofocus'] ? 'autofocus' : ''); ?> autocomplete="on" autocapitalize="none" autocorrect="off" required> @@ -46,6 +47,7 @@ script('core', 'merged-login'); <p class="groupbottom<?php if (!empty($_['invalidpassword'])) { ?> shake<?php } ?>"> <input type="password" name="password" id="password" value="" placeholder="<?php p($l->t('Password')); ?>" + aria-label="<?php p($l->t('Password')); ?>" <?php p($_['user_autofocus'] ? '' : 'autofocus'); ?> autocomplete="on" autocapitalize="off" autocorrect="none" required> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> |