How to disable Browser Auto-Fill?

Asked

Viewed 911 times

-1

This screen is registration of my system.

And here the input.

<input id="senha" name="senha" placeholder="" class="form-control input-md" required="" type="password" autocomplete="off" value="">

as you can see I already used the autocomplete but it didn’t work

inserir a descrição da imagem aqui

1 answer

-1

  • I tried it didn’t work

  • Try on the form.

  • no use json form use

  • All official documentation and developers' own comments recommend not to do so.

  • 1

    @Renan did not see this in the documentation, and I wonder why it would have an option that is not recommended to use, if possible, put the link so I can see it. Really did not know, thank you; vlw

  • Have I heard that leave enabled is unsafe, now disable? Bah...

  • 1

    Here is a link in Portuguese of the MDN that talks about this: https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion - note that at the end of the text the MDN reports that this does not work in the main browsers.

  • 1

    The following is the explanation of the Chrome team explaining why disabling the autocompletion is unsafe: http://lists.w3.org/Archives/Public/public-webapps/2013OctDec/1002.html

  • 1

    And finally: they opened a bug for Chromium because of this behavior and the team marked as won’t fix: https://bugs.chromium.org/p/chromium/issues/detail?id=468153

  • @Renan 'All official documentation and the developers' own comments recommend not to do this. ' did not understand. What you said would be that I can’t use json to submit forms

  • @George no, I was talking about that answer.

  • @Renan thanks for the references, it is not the documentation of html, but it is valid despite disagreeing with the justification given

  • 1

    I also do not agree with the justification given, for me it is insecure, since by saving the passwords automatically someone unauthorized can access your data. Out that anyone can go there in managing saved passwords and see your password. This reason that users can choose stronger passwords because the browser can save your password also does not convince me, for me this generates more problems that solves. But anyway, I also didn’t know that they ignored the autocomplete=off by default in the login fields, good to know!

Show 8 more comments

Browser other questions tagged

You are not signed in. Login or sign up in order to post.