How to remove features autofill

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
davidhan
Forum Newbie
Posts: 2
Joined: Fri Sep 26, 2014 2:08 am
Location: news
Contact:

How to remove features autofill

Post by davidhan »

Hello everyone.
I have a questions look forward to your help.
I have a login area on my site, build with PHP/Mysql
How can I avoid Windows from filling out the password when someone used the function to remember the password.
Because when a user chooses to remember the password on a computer which is shared with other people Windows fills out the password. And I don't want Windows to do so.
Hope someone knows an answer to this.
Kind regards!

ads: website technology: tech new online sells products Best Tablet Android Have Price Under $200 and The Best Smartphone Display from amazon.
Last edited by davidhan on Thu Nov 27, 2014 12:29 am, edited 3 times in total.
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: How to remove features autofill

Post by requinix »

Not just Windows.

Set autocomplete=off in your <form>.

Code: Select all

<form ... autocomplete="off">
Post Reply