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
Introduced experimental_guest_login feature enabling users to login via OAuth2 with Google and Microsoft 🚀 NEW
Added single_session parameter to login and experimental_guest_login widgets to limit each individual user to a one session
Removed pre_authorized list from Authenticate class and added it directly to register_user widget
Added merge_username_email parameter to register_user widget to combine username into email field
Added roles field to user credentials
Added password hint parameter/field to register_user widget and credentials
Added password_instructions parameter to Authenticate class to provide password requirements instructions to register_user and reset_password widgets
Added option to provide config file path to Authenticate class as a single parameter instead of providing the credentials, cookie name, cookie key, cookie expiry days, and pre_authorized as separate parameters to the Authenticate class. This eliminates the need to read/update the config file separately, instead, Streamlit-Authenticator will automatically read/update the config file for all operations.
Fixed Validator parameter bug in Authenticate class
Addressed double login bug
Addressed auto_hash parameter bug in Authenticate class