Tuesday 16 July 2019

html - Disable password complete

How to disable the password complete on HTML pages.



I'm creating a Password Change page, but when I'm using the browser already complete the password field with the old value.



How can I disable this feature?



Ps.: I have already tried using autocomplete="off" as a form property, but it doesn't work.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...