Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -126,8 +126,8 @@ def main():
|
|
126 |
|
127 |
if not st.session_state.authenticated:
|
128 |
st.subheader("Iniciar sesi贸n")
|
129 |
-
username = st.text_input("Usuario")
|
130 |
-
password = st.text_input("Contrase帽a", type="password")
|
131 |
|
132 |
if st.button("Ingresar"):
|
133 |
if username == credentials["username"] and password == credentials["password"]:
|
|
|
126 |
|
127 |
if not st.session_state.authenticated:
|
128 |
st.subheader("Iniciar sesi贸n")
|
129 |
+
username = st.text_input("Usuario", value="admin")
|
130 |
+
password = st.text_input("Contrase帽a", value="flux3x", type="password")
|
131 |
|
132 |
if st.button("Ingresar"):
|
133 |
if username == credentials["username"] and password == credentials["password"]:
|