Browser remember password feature is nice one but it has a problem when you do have several logins for several sections, something like:
/ - one login
/private/ - another login
/admin/ - another login
The problem is what you can do in order to make the browser be smarter and do proper rember/autocomplete of user/passwords for each s...
Is it possible to implement "Remember Me" using jquery? If so, any suggestion how it can be done?
EDIT:
I am trying to remember username and password using jquery cookies.store cookies about username and password and read it the next time and redirect to a specific page.
...
I have an asp.net login web form that have ( username textBox - password textBox ) plus Remember Me CheckBox option
When user login i do the below code
if (provider.ValidateUser(username, password))
{
int timeOut = 0x13;
DateTime expireDate = DateTime.Now.AddMinutes(19.0);
if (rememberMeCheckBox.Checked)
{
time...
I'd like to use the evercookie javascript library to receive the users cookie and make the spring security rememberme-service use it.
I read a bit about implementing a custom remember-me service, but I think I just need to discover the cookie on the client-side using the evercookie library. I've got zero knowledge about cookie handling,...