Questions tagged [remember-me]

A way to store personal information to make it easier for a user to fill in forms or login to websites at a later time.

A "remember me" option is often used on login forms on websites. It is represented as a checkbox labeled "remember me" and stores either the username or a login token to re-login the user when visiting the website again.

525 questions
0
votes
1 answer

is it possible to start a new session if a cookie is set?

i want to start a new session using a cookie, once the previous session has been destroyed. if a cookie is set, but not a session, can i automatically, create a new session using only the cookie? currently, i am implementing a remember me button.…
arboles
  • 1,321
  • 4
  • 20
  • 39
0
votes
1 answer

Remember-Me-cookie - where to store token

I'm currently implenting the user-authentication on my website and for convenience, I want to implement a remember me feature. The website is a free game, security is not of the utmost priority since no personal date is stored - apart from e-mail…
Ryan
  • 143
  • 1
  • 4
-1
votes
1 answer

Are all modern browsers implementing a remember password feature?

Are all modern browsers implementing a remember password feature? Or do I have to implement it via cookies for some browsers? I am thinking about Opera, FireFox, IE, Chrome, Safari, etc... I mean, when you login on a website (for example), Firefox…
Jérôme Verstrynge
  • 57,710
  • 92
  • 283
  • 453
-1
votes
2 answers

Why doesn't this 'REMEMBER ME' function work in Dart?

I would like to check the 'shared_preferences' package in dart and if the user succeeds in logging in after checking the remember check box, save the email that the user used to log in and fill in the email box automatically when entering the next…
Hssum
  • 21
  • 4
-1
votes
1 answer

remember-me sessions spring security rest int GRAILS

I'm new to using Grails, and I need to create long sessions, in a rest API, but I can't find any information on how to do this, I would really appreciate your help currently my system is using grails 2.5,…
-1
votes
1 answer

java.lang.IllegalStateException: UserDetailsService is required

I been learning about spring boot lately, pretty much newbie. I go though some tutorial and been working for Spring Security for my project spring boot. And i watching this tutorial using remember-me https://www.youtube.com/watch?v=P_eL5QQmiV0 but…
-1
votes
2 answers

Can you modify the native browser component for 'Save password'?

Have been tasked with modifying the current design of all(not all, but according to what most users are using on our space) native browser 'Remember my password' components. Does anyone know if this is possible and if so(or not so) any sources would…
Stuart
  • 32
  • 7
-1
votes
1 answer

how can I define "remember me" for each one separately? Symfony 5

I create two auth "admin" and "user" in Symfony 5 ( security section ) I set them in main firewall. Now how can I define "remember me" for each one separately?? For admin: remember_me: secret: '%kernel.secret%' lifetime: 86400 For…
BTS
  • 1
-1
votes
1 answer

How do I remember if a button has been clicked already, and remember even after page reloads using js and html?

I'm…
user14182627
-1
votes
2 answers

not work remember_token in laravel how set remember_token and cookie?

I logged in through the Laravel authentication system and set Remember_token, After going from one link to another link (Route) The authentication system is down and I am Logout , code for login and set remember_token : Auth::login($user,true);
-1
votes
1 answer

log out clears Remember_me Cookie in Grails

I am trying to enable "remember_me" functionality in grails. I am using latest version of Spring-security plugin for grails. I have tried many scenarios but the Remember_me functionality does not work. I can confirm that the cookie is created…
Lina
  • 1,217
  • 1
  • 15
  • 28
-1
votes
1 answer

How to create 2 form with 1 entity symfony 3

I would like to use one entity to create two forms in Symfony 3.4. My User entity contains: username password email .... I created one form to connect from "User" entity (username, password) I would like to create another one to create form…
user4161023
-1
votes
1 answer

Remember Me while logging in with Facebook in laravel 5.2

I have my application built in laravel 5.2. I have the remember me token functionality in the app. It works fine for the normal login, But I wanted to have it for the facebook users also. I mean when the user tries to login to their account using…
PrashJ
  • 71
  • 2
  • 6
-1
votes
1 answer

yii2 remember me default checked, how can I uncheck?

When I login in yii2, unchecked remember me but I always get remember me as checked in login form. How can we unchecked by default. Here is the controller code public function login() { if ($this->validate()) { return…
user7961310
-1
votes
2 answers

silex custom/persistant remember me

I want use the class PersistentTokenBasedRememberMeServices or my custom class for delivery the remember me token but I dont know how to configure it into Silex 2. How can I do ? Thanks in advance. EDIT : I know the default remember me configuration…
1 2 3
34
35