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.
remotes/origin/poc-doctrine-migrations
Brewal 11 years ago
parent 1769de0a6d
commit eac117fc8f
  1. 4
      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')); ?>"

Loading…
Cancel
Save