remember-me

How to improve remember password option when you have different logins for different subdirectories?

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 cookies?

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. ...

How can I log any login operation in case of "Remember Me" option ?

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...

evercookie in Spring Security rememberme-service

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,...