I have a look at many pages on the web and many methods mentioned on that pages as Disable browser 'Save Password' functionality but none of them working properly for all browsers. One of the best method in these pages as shown below; but id does not work in Chrome. Is it possible make browser not to remember password field in MVC? Please do not suggest the known solution method as "autocomplete=off" without testing it on all of the latest version of the major browser.
Plunk - http://plnkr.co/edit/xmBR31NQMUgUhYHBiZSg?p=preview
<form method="post" action="yoururl">
<div class="hidden">
<input type="password"/>
</div>
<input type="text" name="username" placeholder="username"/>
<input type="password" name="password" placeholder="password"/>
</form>
<style>
.hidden { display: none; }
</style>