We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7484ea3 commit 36765d2Copy full SHA for 36765d2
README.md
@@ -47,7 +47,6 @@ Using Streamlit-Authenticator is as simple as importing the module and calling i
47
```python
48
import streamlit as st
49
import streamlit_authenticator as stauth
50
-from streamlit_authenticator.utilities import *
51
```
52
53
### 3. Creating a config file
@@ -161,7 +160,7 @@ authenticator = stauth.Authenticate(
161
160
162
try:
163
authenticator.login()
164
-except LoginError as e:
+except Exception as e:
165
st.error(e)
166
167
@@ -205,7 +204,7 @@ try:
205
204
authenticator.experimental_guest_login('Login with Microsoft',
206
provider='microsoft',
207
oauth2=config['oauth2'])
208
209
210
211
0 commit comments