How to turn off form autocompletion and autofill in HTML form
<form method="post" action="/form" autocomplete="off">
<input type="text" name="email" value=""/>
<input autocomplete="new-password" type="password" name="password" value="" />
</form>
Before:
After: