You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
Currently, users accessing the site through basic auth are logged in automatically.
In the future, we may want to allow them to log in via basic auth by clicking a link on the login screen (similar to "authenticate with google"). This would provide more flexibility, for example allowing users to share a laptop if someone is without theirs.
The text was updated successfully, but these errors were encountered:
This sounds great. It's possible to write a cookie to the user's machine too... so if someone actually clicks the logout buttom, bam they get the "logged out" cookie, and conditionally we can prevent the autologin stuff from taking place if the cookie is found on subsequent requests. Also, prevent the code from running for users who are already logged in. and upon successful login, we can delete this cookie off the client machine.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, users accessing the site through basic auth are logged in automatically.
In the future, we may want to allow them to log in via basic auth by clicking a link on the login screen (similar to "authenticate with google"). This would provide more flexibility, for example allowing users to share a laptop if someone is without theirs.
The text was updated successfully, but these errors were encountered: