Merge c6e6b1fe78fb9bbbf614fca47f572a24dd066a68 into af595ed96db059af52e05d5c5a0ffd9255de98c8

This commit is contained in:
Wikinaut 2017-04-20 18:52:05 +00:00 committed by GitHub
commit a350c843f7

View File

@ -269,7 +269,16 @@ 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" />
<!-- The following form element glues pseudo-login data together, so that password managers can try to look up stored value pairs.
The username field is made hidden, because I found that otherwise password managers will fill in data into the password field.
See https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion#The_autocomplete_attribute_and_login_fields
-->
<form>
<input type="text" name="username" class="hidden" />
<input type="password" id="passwordinput" placeholder="<?php echo I18n::_('Password (recommended)'); ?>" class="form-control" size="20" />
</form>
</div>
</li>
<?php