I want to disable form autofill in Google Chrome browser.
The autocomplete="off" tag wont work now.
To do this you need to create a extra field with the name email and password and hide it, chrome browser will fill the first email and password filed in the form tag.
f_email & f_password are the fake.
email & password are correct.
<form method="POST">
<input name="f_email" style="width:1px" type="text" />
<input name="f_password" style="width:1px" type="password" />
<input name="email" type="text" />
<input name="password" type="password" />
</form
Regard's