Update app.py
Browse files
app.py
CHANGED
|
@@ -439,8 +439,10 @@ if st.session_state['step'] == 5:
|
|
| 439 |
im = Image.open(path)
|
| 440 |
st.image(im, caption="Lateral Image")
|
| 441 |
elif inp == 'Report':
|
| 442 |
-
st.
|
| 443 |
-
|
|
|
|
|
|
|
| 444 |
st.markdown(
|
| 445 |
"<h3 style='text-align: center'><strong>OUTPUT:</strong></h3>",
|
| 446 |
unsafe_allow_html=True)
|
|
@@ -469,7 +471,10 @@ if st.session_state['step'] == 5:
|
|
| 469 |
im = Image.open(path)
|
| 470 |
st.image(im, caption="Lateral Image")
|
| 471 |
elif out == 'Report':
|
| 472 |
-
st.
|
|
|
|
|
|
|
|
|
|
| 473 |
|
| 474 |
# Pulsante per tornare all'inizio
|
| 475 |
if st.button("Return to the beginning"):
|
|
|
|
| 439 |
im = Image.open(path)
|
| 440 |
st.image(im, caption="Lateral Image")
|
| 441 |
elif inp == 'Report':
|
| 442 |
+
st.markdown(
|
| 443 |
+
f"<p style='font-size:20px;'><strong>Report:</strong> {esempio['Report']}</p>",
|
| 444 |
+
unsafe_allow_html=True
|
| 445 |
+
)
|
| 446 |
st.markdown(
|
| 447 |
"<h3 style='text-align: center'><strong>OUTPUT:</strong></h3>",
|
| 448 |
unsafe_allow_html=True)
|
|
|
|
| 471 |
im = Image.open(path)
|
| 472 |
st.image(im, caption="Lateral Image")
|
| 473 |
elif out == 'Report':
|
| 474 |
+
st.markdown(
|
| 475 |
+
f"<p style='font-size:20px;'><strong>Report:</strong> {esempio['Report']}</p>",
|
| 476 |
+
unsafe_allow_html=True
|
| 477 |
+
)
|
| 478 |
|
| 479 |
# Pulsante per tornare all'inizio
|
| 480 |
if st.button("Return to the beginning"):
|