Updated bootstrap.php to fix a display issue

The text "password (recommended)" on the password field was being truncated to "password (recommen" because of a size issue.
pull/232/head
Jake Cozart 7 years ago committed by GitHub
parent 4f070d8fcf
commit ddd5128776

@ -269,7 +269,7 @@ if ($PASSWORD):
?> ?>
<li> <li>
<div id="password" class="navbar-form hidden"> <div id="password" class="navbar-form hidden">
<input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" class="form-control" size="19" /> <input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" class="form-control" size="23" />
</div> </div>
</li> </li>
<?php <?php

Loading…
Cancel
Save