artintel235 commited on
Commit
02dd88b
·
verified ·
1 Parent(s): 32c68ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
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.")