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.
This commit is contained in:
Jake Cozart 2017-05-20 15:08:17 -07:00 committed by GitHub
parent 4f070d8fcf
commit ddd5128776

View File

@ -269,7 +269,7 @@ if ($PASSWORD):
?>
<li>
<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>
</li>
<?php