Spaces:
Running
Running
Updated Authenticator issue
Browse files
app.py
CHANGED
@@ -72,11 +72,11 @@ if not authentication_status:
|
|
72 |
add_logos()
|
73 |
|
74 |
# Render the login module
|
75 |
-
name, authentication_status, username = authenticator.login(
|
76 |
# If the user is authenticated
|
77 |
if authentication_status:
|
78 |
|
79 |
-
authenticator.logout(
|
80 |
st.write(f'Welcome *{name}*')
|
81 |
|
82 |
# Sidebar for navigation
|
|
|
72 |
add_logos()
|
73 |
|
74 |
# Render the login module
|
75 |
+
name, authentication_status, username = authenticator.login()
|
76 |
# If the user is authenticated
|
77 |
if authentication_status:
|
78 |
|
79 |
+
authenticator.logout()
|
80 |
st.write(f'Welcome *{name}*')
|
81 |
|
82 |
# Sidebar for navigation
|