input hidden disabled autofill code example
Example 1: how to make html input not autofill
<input type="text" autocomplete="off" />
Example 2: input without autocomplete
<input type="text" name="foo" autocomplete="off" />
<input type="text" autocomplete="off" />
<input type="text" name="foo" autocomplete="off" />