Skip to content

Commit

Permalink
Do not allow autocomplete of the password field to avoid security iss…
Browse files Browse the repository at this point in the history
…ues:
  • Loading branch information
Ermal committed Nov 20, 2012
1 parent 66f445c commit 6a68440
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/inc/authgui.inc
Expand Up @@ -247,7 +247,7 @@ if($config['virtualip'])
<p>
<span style="text-align:left">
<?=gettext("Password"); ?>: <br>
<input onclick="clearError();" onchange="clearError();" id="passwordfld" type="password" name="passwordfld" class="formfld pwd" tabindex="2" />
<input onclick="clearError();" onchange="clearError();" id="passwordfld" type="password" name="passwordfld" autocomplete="off" class="formfld pwd" tabindex="2" />
</span>
</p>
<br>
Expand All @@ -268,4 +268,4 @@ if($config['virtualip'])
<?php
} // end function

?>
?>

0 comments on commit 6a68440

Please sign in to comment.