IsaacKerson commited on
Commit
520a1a9
1 Parent(s): 7cbab12

remove st.writes from login

Browse files
Files changed (1) hide show
  1. pages/login.py +2 -6
pages/login.py CHANGED
@@ -29,15 +29,11 @@ def app():
29
  cookie_expiry_days=30
30
  )
31
 
32
- st.write(auth.get_path())
33
- st.write(auth.get_connection())
34
- st.write(auth.check_connection())
35
-
36
  auth.login('Login', 'main')
37
 
38
  # st.write(auth.check_username())
39
- st.write(auth.get_hashed_password())
40
- st.write(auth.check_pw())
41
 
42
  if st.session_state['authentication_status']:
43
  auth.logout('Logout', 'main')
29
  cookie_expiry_days=30
30
  )
31
 
 
 
 
 
32
  auth.login('Login', 'main')
33
 
34
  # st.write(auth.check_username())
35
+ # st.write(auth.get_hashed_password())
36
+ # st.write(auth.check_pw())
37
 
38
  if st.session_state['authentication_status']:
39
  auth.logout('Logout', 'main')