Forum Moderators: coopster
I'd like to have an input box that shows the actual password and allows the user to update by simply changing the textbox, if possible.
Thanks in advance!
The standard way to do this is to give the user three type="password" fields to complete:
1: Enter your current password
2: Enter your new requested password
3: Re-enter your new requested password
The first field asks the user to enter their current password which you check against the database to re-authenticate the user. This ensures somone hasn't just stumbled upon an unlogged out session or spoofed your cookies.
The next fields ask the user to enter their new password (and retype it to confirm).