Update modules/ui/ui.py
Browse files- modules/ui/ui.py +25 -27
modules/ui/ui.py
CHANGED
@@ -219,34 +219,32 @@ def login_register_page(lang_code, t):
|
|
219 |
|
220 |
####################################################################################################################################
|
221 |
|
222 |
-
# Pie de p谩gina legal
|
223 |
-
footer_placeholder = st.empty()
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
</style>
|
244 |
-
|
245 |
-
<div id="footer">
|
246 |
-
漏 2025 NVIDIA, the NVIDIA logo, and AIdeaText, ALPHA are trademarks and/or registered trademarks of NVIDIA Corporation in the U.S. and other countries.
|
247 |
-
</div>
|
248 |
-
""", unsafe_allow_html=True)
|
249 |
|
|
|
|
|
|
|
|
|
250 |
|
251 |
#################################### LOGOS ################################################################################################
|
252 |
# Crear contenedor para logos y selector de idioma usando columnas de Streamlit
|
|
|
219 |
|
220 |
####################################################################################################################################
|
221 |
|
222 |
+
# Pie de p谩gina legal (debe ir al final de la funci贸n)
|
223 |
+
footer_placeholder = st.empty()
|
224 |
+
footer_placeholder.markdown("""
|
225 |
+
<style>
|
226 |
+
#footer {
|
227 |
+
position: fixed;
|
228 |
+
bottom: 0;
|
229 |
+
left: 0;
|
230 |
+
width: 100%;
|
231 |
+
background-color: #f0f2f6;
|
232 |
+
color: #4f4f4f;
|
233 |
+
text-align: center;
|
234 |
+
padding: 10px;
|
235 |
+
font-size: 12px;
|
236 |
+
border-top: 1px solid #e6e6e6;
|
237 |
+
z-index: 100;
|
238 |
+
}
|
239 |
+
.main > div {
|
240 |
+
padding-bottom: 60px;
|
241 |
+
}
|
242 |
+
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
|
244 |
+
<div id="footer">
|
245 |
+
漏 2025 NVIDIA, the NVIDIA logo are trademarks and/or registered trademarks of NVIDIA Corporation in the U.S. and other countries.
|
246 |
+
</div>
|
247 |
+
""", unsafe_allow_html=True)
|
248 |
|
249 |
#################################### LOGOS ################################################################################################
|
250 |
# Crear contenedor para logos y selector de idioma usando columnas de Streamlit
|