auth3
Browse files
app.py
CHANGED
|
@@ -13,6 +13,9 @@ def check_password():
|
|
| 13 |
and st.session_state["password"] == st.secrets["password"]
|
| 14 |
):
|
| 15 |
st.session_state["password_correct"] = True
|
|
|
|
|
|
|
|
|
|
| 16 |
del st.session_state["password"] # don't store password
|
| 17 |
del st.session_state["username"] # don't store username
|
| 18 |
else:
|
|
|
|
| 13 |
and st.session_state["password"] == st.secrets["password"]
|
| 14 |
):
|
| 15 |
st.session_state["password_correct"] = True
|
| 16 |
+
print(st.session_state["password_correct"])
|
| 17 |
+
print(st.session_state["username"])
|
| 18 |
+
print(st.session_state["password"])
|
| 19 |
del st.session_state["password"] # don't store password
|
| 20 |
del st.session_state["username"] # don't store username
|
| 21 |
else:
|