diff options
author | Brewal <brewal.renault@gmail.com> | 2015-06-08 15:22:52 +0200 |
---|---|---|
committer | Brewal <brewal.renault@gmail.com> | 2015-06-08 15:22:52 +0200 |
commit | eac117fc8fbc8b31e45b2e811a86188f40223eaf (patch) | |
tree | 9a8988070d87cc0849ba7328ddd80f1a09ba7d9d /core/templates/login.php | |
parent | 1769de0a6d6fcdfe2bb17d5dea42693055ed8a83 (diff) | |
download | nextcloud-server-eac117fc8fbc8b31e45b2e811a86188f40223eaf.tar.gz nextcloud-server-eac117fc8fbc8b31e45b2e811a86188f40223eaf.zip |
Changed a p element by a div
A p element cannot contain a div element (here `<div style="clear: both;"></div>`). It should be change by a div element to fits standards.
Diffstat (limited to 'core/templates/login.php')
-rw-r--r-- | core/templates/login.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index b24c9cb07d0..1586c1117dd 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -30,13 +30,13 @@ script('core', [ <small><?php p($l->t('Please try again or contact your administrator.')); ?></small> </div> <?php endif; ?> - <p id="message" class="hidden"> + <div id="message" class="hidden"> <img class="float-spinner" alt="" src="<?php p(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>"> <span id="messageText"></span> <!-- the following div ensures that the spinner is always inside the #message div --> <div style="clear: both;"></div> - </p> + </div> <p class="grouptop"> <input type="text" name="user" id="user" placeholder="<?php p($l->t('Username')); ?>" |