Reputation: 31
I have used auth0 with meteor js and dont want to use remember me feature of auth0. I want to disable it . I have tried with
https://demo.auth0.com/v2/logout?returnTo=http://localhost:3000
it works but it gives white screen in mobile for a second.
any other options for it.
Upvotes: 0
Views: 645
Reputation: 580
To clarify, are you using Lock, the login dialogue? If so, you can set the rememberLastLogin attribute to false on initialization, documented here:
https://auth0.com/docs/libraries/lock/customization#rememberlastlogin-boolean-
Upvotes: 1