1<form method="post" action="/post/" autocomplete="off">
2 <!-- The entire form has autocomplete disabled. -->
3</form>
4
5<!-- or you turn it off for just one input -->
6<input type="text" autocomplete="off">
1<input type="email" name="email"><!-- Can be type="text" -->
2<input type="password" name="password" autocomplete="new-password">
3