MilanM commited on
Commit
083e14f
·
verified ·
1 Parent(s): ffad367

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -31,12 +31,12 @@ def check_password():
31
  if "password_correct" not in st.session_state:
32
  st.markdown("\n\n")
33
  st.text_input("Enter the password", type="password", on_change=password_entered, key="password")
34
- st.divider()
35
- st.info("Developed by Milan Mrdenovic © IBM Norway 2024")
36
  return False
37
  elif not st.session_state["password_correct"]:
38
  st.markdown("\n\n")
39
  st.text_input("Enter the password", type="password", on_change=password_entered, key="password")
 
 
40
  st.error("😕 Password incorrect")
41
  return False
42
  else:
 
31
  if "password_correct" not in st.session_state:
32
  st.markdown("\n\n")
33
  st.text_input("Enter the password", type="password", on_change=password_entered, key="password")
 
 
34
  return False
35
  elif not st.session_state["password_correct"]:
36
  st.markdown("\n\n")
37
  st.text_input("Enter the password", type="password", on_change=password_entered, key="password")
38
+ st.divider()
39
+ st.info("Developed by Milan Mrdenovic © IBM Norway 2024")
40
  st.error("😕 Password incorrect")
41
  return False
42
  else: