Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -41,15 +41,15 @@ authenticator = stauth.Authenticate(
|
|
| 41 |
config['cookie']['expiry_days']
|
| 42 |
)
|
| 43 |
|
| 44 |
-
#
|
| 45 |
-
name, authentication_status, username = authenticator.login('Login'
|
| 46 |
|
| 47 |
-
if
|
| 48 |
st.error('Authentication failed. Please refresh and try again.')
|
| 49 |
st.stop()
|
| 50 |
|
| 51 |
st.sidebar.write(f"Welcome *{name}*")
|
| 52 |
-
authenticator.logout('Logout'
|
| 53 |
|
| 54 |
# ------------------------------
|
| 55 |
# Load Models
|
|
|
|
| 41 |
config['cookie']['expiry_days']
|
| 42 |
)
|
| 43 |
|
| 44 |
+
# Attempt login with default location
|
| 45 |
+
name, authentication_status, username = authenticator.login('Login')
|
| 46 |
|
| 47 |
+
if not authentication_status:
|
| 48 |
st.error('Authentication failed. Please refresh and try again.')
|
| 49 |
st.stop()
|
| 50 |
|
| 51 |
st.sidebar.write(f"Welcome *{name}*")
|
| 52 |
+
authenticator.logout('Logout')
|
| 53 |
|
| 54 |
# ------------------------------
|
| 55 |
# Load Models
|