This question has been asked Several times in the past but unfortunately there\'s no way i could disable autofill for Google Chrome (v.36.0.1985.125 m)
I have alread
Make type of password field as 'text' and change it to 'password' on click.
HTML:
<input autocomplete="off" id='username'> <input autocomplete="off" id='password' type="text" onclick="changeType('password')">
js:
changeType(id) { document.getElementById(id).setAttribute('type', 'password'); }