test auth
Browse files
app.py
CHANGED
@@ -78,7 +78,13 @@ def check_password():
|
|
78 |
"password_correct" in st.session_state
|
79 |
and not st.session_state["password_correct"]
|
80 |
):
|
81 |
-
st.error(
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
# Login form with improved input fields
|
84 |
st.text_input("Username", key="username", placeholder="Enter your username")
|
|
|
78 |
"password_correct" in st.session_state
|
79 |
and not st.session_state["password_correct"]
|
80 |
):
|
81 |
+
st.error(
|
82 |
+
"😕 User not known or password incorrect"
|
83 |
+
+ "the username is "
|
84 |
+
+ st.secrets["username"]
|
85 |
+
+ " and the password is "
|
86 |
+
+ st.secrets["password"]
|
87 |
+
)
|
88 |
|
89 |
# Login form with improved input fields
|
90 |
st.text_input("Username", key="username", placeholder="Enter your username")
|