Reputation: 1
I have a page in my web app, that page need to save some configurations , include different usernames and passwords. But browsers autofill fills usernames and passwords of this pages with saved Login credentials. autocomplete="off" doesnt seems to work in latest browsers. Is there any other options?
Upvotes: 0
Views: 385
Reputation: 51
Do you insert autocomplete in the starting form tag?
<form .... autocomplete="off">
It works correct in our web app.
Upvotes: 1