Streamlit-Authenticator icon indicating copy to clipboard operation
Streamlit-Authenticator copied to clipboard

A secure authentication module to validate user credentials in a Streamlit application.

Results 94 Streamlit-Authenticator issues
Sort by recently updated
recently updated
newest added

Hi, I really appreciate the multiple options provided for signing in with numerous scenarios thought out. However, I am wondering where to put/assign form key values when using multiple authenticator...

help wanted

Hi, first of all - the library is really great. Many thanks for making authentication that much easier! One thing that I couldnt figure out yet is how to clear...

enhancement

with st.sidebar.container(): with open('config.yaml', encoding='utf-8') as file: config = yaml.load(file, Loader=SafeLoader) authenticator = stauth. Authenticate( config['credentials'], config['cookie']['name'], config['cookie']['key'], config['cookie']['expiry_days'], config['preauthorized'] ) if not st.session_state["authentication_status"]: authenticator.login() if st.session_state["authentication_status"]: st.write('here) elif st.session_state["authentication_status"]...

enhancement

Hello, I would like to create 2 different cookies depending on the user logged in so that one "super user" is allowed to stay 1 week before re-authentificate and the...

help wanted

I suggest allowing for fewer fields in the form. Right now, it seems like all fields are shown, even if a dict with fewer fields is passed as `fields` to...

enhancement

Hello, thank you very much for this fantastic package. It helps a lot put streamlit apps into "semi-production". I want to ask, is it possible do to an initial empty...

enhancement

I created a minimum wrapper for the openai chat completion api. It runs locally and on the Streamlit cloud without issue. When I add authentication, the local version still works...

help wanted

I am using streamlit-Authenticator which works almost fine except that cookie faster reauthentication never worked. I am using streamline 1.20.0 and streamlit-authenticator 0.2.1 with python 3.10.6 I've done some analysis...

help wanted

Hi, I think the authentication_status is not benig able to persist across multiple pages. Please see this page for more information (source code + issues): https://discuss.streamlit.io/t/login-button-random-behavior/54909 @mkhorasani can you please...

help wanted

Hey everybody, I implemented the auth as described in your README and tested it locally on my machine - works fine. Then i deployed the same app using Docker and...

help wanted