msg
Browse files
app.py
CHANGED
|
@@ -14,8 +14,8 @@ st.sidebar.subheader("Login")
|
|
| 14 |
|
| 15 |
# Login form
|
| 16 |
with st.sidebar.form(key="login_form"):
|
| 17 |
-
username = st.text_input("Username"
|
| 18 |
-
password = st.text_input("Password", type="password"
|
| 19 |
submit_button = st.form_submit_button("Login")
|
| 20 |
|
| 21 |
if submit_button:
|
|
|
|
| 14 |
|
| 15 |
# Login form
|
| 16 |
with st.sidebar.form(key="login_form"):
|
| 17 |
+
username = st.text_input("Username")
|
| 18 |
+
password = st.text_input("Password", type="password")
|
| 19 |
submit_button = st.form_submit_button("Login")
|
| 20 |
|
| 21 |
if submit_button:
|