Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ authenticator = stauth.Authenticate(
|
|
25 |
)
|
26 |
|
27 |
# Login/Logout flow
|
28 |
-
name, authentication_status, username = authenticator.login("Login", "main")
|
29 |
|
30 |
if authentication_status:
|
31 |
st.success(f"Welcome, {name}!")
|
@@ -37,5 +37,3 @@ elif authentication_status == False:
|
|
37 |
st.error("Username/password is incorrect.")
|
38 |
elif authentication_status == None:
|
39 |
st.warning("Please enter your username and password.")
|
40 |
-
|
41 |
-
# Note: You can replace `stauth` with your custom Google OAuth implementation for more complex use.
|
|
|
25 |
)
|
26 |
|
27 |
# Login/Logout flow
|
28 |
+
name, authentication_status, username = authenticator.login("Login", location="main")
|
29 |
|
30 |
if authentication_status:
|
31 |
st.success(f"Welcome, {name}!")
|
|
|
37 |
st.error("Username/password is incorrect.")
|
38 |
elif authentication_status == None:
|
39 |
st.warning("Please enter your username and password.")
|
|
|
|