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 /core/templates/layout.guest.php | |
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>
Diffstat (limited to 'core/templates/layout.guest.php')
-rw-r--r-- | core/templates/layout.guest.php | 4 |
1 files changed, 3 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"> |