From f7febb1477e1e464b675fb68b0300eaa5d47310c Mon Sep 17 00:00:00 2001 From: szapp Date: Thu, 8 Aug 2024 17:19:23 +0200 Subject: [PATCH] Update contact form render order --- "pages/7_\342\234\211\357\270\217Contact.py" | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git "a/pages/7_\342\234\211\357\270\217Contact.py" "b/pages/7_\342\234\211\357\270\217Contact.py" index b96a6e8..72c2b95 100644 --- "a/pages/7_\342\234\211\357\270\217Contact.py" +++ "b/pages/7_\342\234\211\357\270\217Contact.py" @@ -10,8 +10,6 @@ frontend.add_config() frontend.add_style() -frontend.add_sidebar_login() -frontend.add_sidebar_logo() frontend.add_header_logo("Contact") @@ -47,3 +45,7 @@ st.html(contact_form) st.image("images/mango_reading.png", width=550) + +# Add the login and logo to the sidebar in the end +frontend.add_sidebar_login() +frontend.add_sidebar_logo()