Preventing password fill-in
Web Development
3
Posts
2
Posters
0
Views
1
Watching
-
I would like to prevent the user's browser from ever storing and filling in the password automatically on the site that I'm developing, regardless of their browser settings. Is there a straightforward way of doing this? -----G
-
I would like to prevent the user's browser from ever storing and filling in the password automatically on the site that I'm developing, regardless of their browser settings. Is there a straightforward way of doing this? -----G
autocomplete=off
for either the form control or the textbox.Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
autocomplete=off
for either the form control or the textbox.Vasudevan Deepak Kumar Personal Homepage Tech Gossips
Thank you so much!