Update app.py
Browse files
app.py
CHANGED
@@ -33,12 +33,17 @@ def logged_in_interface():
|
|
33 |
with col3:
|
34 |
st.markdown("<p style='font-size: 1.2rem; margin-bottom: 0; padding-top: 15px;'>Selecciona el idioma del texto que analizar谩s</p>", unsafe_allow_html=True)
|
35 |
with col4:
|
|
|
36 |
selected_lang = st.selectbox("", list(languages.keys()), key="language_selector", label_visibility="collapsed")
|
|
|
37 |
lang_code = languages[selected_lang]
|
|
|
38 |
with col5:
|
|
|
39 |
if st.button("Cerrar Sesi贸n", key="logout_button"):
|
40 |
st.session_state.logged_in = False
|
41 |
st.experimental_rerun()
|
|
|
42 |
|
43 |
# A帽adir una l铆nea divisoria
|
44 |
st.markdown("---")
|
|
|
33 |
with col3:
|
34 |
st.markdown("<p style='font-size: 1.2rem; margin-bottom: 0; padding-top: 15px;'>Selecciona el idioma del texto que analizar谩s</p>", unsafe_allow_html=True)
|
35 |
with col4:
|
36 |
+
st.markdown("<div style='padding-top: 15px;'>", unsafe_allow_html=True)
|
37 |
selected_lang = st.selectbox("", list(languages.keys()), key="language_selector", label_visibility="collapsed")
|
38 |
+
st.markdown("</div>", unsafe_allow_html=True)
|
39 |
lang_code = languages[selected_lang]
|
40 |
+
|
41 |
with col5:
|
42 |
+
st.markdown("<div style='padding-top: 15px;'>", unsafe_allow_html=True)
|
43 |
if st.button("Cerrar Sesi贸n", key="logout_button"):
|
44 |
st.session_state.logged_in = False
|
45 |
st.experimental_rerun()
|
46 |
+
st.markdown("</div>", unsafe_allow_html=True)
|
47 |
|
48 |
# A帽adir una l铆nea divisoria
|
49 |
st.markdown("---")
|