I created a login form with input text for username and input of type password for userpass using visual studio 2010. I have the latest chrome Version 59.0.3071.115 (Official Bu
You can prevent Chrome from suggesting by adding two hidden fake fields as well as adding the autocomplete="off"
to the form and autocomplete="none"
to the main inputs.
Here's a working sample:
Jsfiddle: https://jsfiddle.net/wb20t08g/3/
NOTE: You need to delete google chrome suggestions that have been saved there from before. (Ctrl + Shift + del). But after that if you click on submit, Chrome won't show any pop-up mentioning if you want to save the password or any dropdown for suggestions.