mgbam commited on
Commit
3b6b85d
·
verified ·
1 Parent(s): 601c987

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -41,15 +41,15 @@ authenticator = stauth.Authenticate(
41
  config['cookie']['expiry_days']
42
  )
43
 
44
- # Use keyword argument for location
45
- name, authentication_status, username = authenticator.login('Login', location='main')
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', location='sidebar')
53
 
54
  # ------------------------------
55
  # Load Models
 
41
  config['cookie']['expiry_days']
42
  )
43
 
44
+ # Use default location for login and logout
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