I am following this angular 2+ guide. https://auth0.com/docs/quickstart/spa/angular2/01-login. When I click the login button on my application I am automatically signed it. Even when I logout and remove the accessToken and idToken I am still able to sign in. How can I stop this from happening?
The auth server has an active session for you.
You can force it to log you out by heading to the logout link. Check out these docs on logout here: Logout
thank you… that clears things up