Ronio Jerico Roque commited on
Commit ·
8811d54
1
Parent(s): 51fe898
Update login redirection to agent_6 page
Browse files
app.py
CHANGED
|
@@ -17,7 +17,7 @@ with placeholder.form("login"):
|
|
| 17 |
submit = st.form_submit_button("Login")
|
| 18 |
|
| 19 |
if submit and email == actual_email and password == actual_password:
|
| 20 |
-
st.switch_page("pages/
|
| 21 |
st.success("Login successful")
|
| 22 |
elif submit and email != actual_email and password != actual_password:
|
| 23 |
st.error("Login failed")
|
|
|
|
| 17 |
submit = st.form_submit_button("Login")
|
| 18 |
|
| 19 |
if submit and email == actual_email and password == actual_password:
|
| 20 |
+
st.switch_page("pages/agent_6.py")
|
| 21 |
st.success("Login successful")
|
| 22 |
elif submit and email != actual_email and password != actual_password:
|
| 23 |
st.error("Login failed")
|