disable autofill password html code example
Example 1: disable browser autocomplete
<form method="post" action="/form" autocomplete="off">
[…]
</form>
Example 2: input without autocomplete
<input type="text" name="foo" autocomplete="off" />
<form method="post" action="/form" autocomplete="off">
[…]
</form>
<input type="text" name="foo" autocomplete="off" />