Spaces:
Running
Running
salomonsky
commited on
Commit
•
5ce6479
1
Parent(s):
1ccd57a
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"]:
|