Skip to content

Commit

Permalink
Disable spellcheckers from inspecting the password (#2420)
Browse files Browse the repository at this point in the history
  • Loading branch information
yubiuser committed Nov 11, 2022
2 parents 8e22142 + f24cbcf commit 14d4493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion login.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<form action="" id="loginform" method="post">
<div class="form-group login-options has-feedback<?php if ($wrongpassword) { ?> has-error<?php } ?>">
<div class="pwd-field">
<input type="password" id="loginpw" name="pw" class="form-control" placeholder="Password" autocomplete="current-password" autofocus>
<input type="password" id="loginpw" name="pw" class="form-control" placeholder="Password" spellcheck="false" autocomplete="current-password" autofocus>
<span class="fa fa-key form-control-feedback"></span>
</div>
<div>
Expand Down

0 comments on commit 14d4493

Please sign in to comment.