How would I create a “Remember me?” sort of auto-login system? I have a greasemonkey script to display information on a different website with use of tags, but I don’t want the information potentially stolen, so I have a pre-existing login system that I’d like to have a “remember me” with.
Share
Are you asking how to implement a ‘remember me’ on a website you are creating? In that case, you need to create cookies with username and password which don’t get destroyed upon logout. Check for the existence of these cookies, and if found verify and login the user.
If you’re, on the other hand, asking how to be remembered on websites you frequent when they do not provide a ‘remember me’ function, the best I can think of is tell your browser to remember and enter your password on each visit.