Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
@@ -11,6 +11,6 @@ st.write("Upload an image of your waste before throwing it.")
|
|
11 |
uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "png", "jpeg"])
|
12 |
|
13 |
if uploaded_file is not None:
|
14 |
-
img = Image.open(uploaded_file)
|
15 |
#st.image(img, caption="Uploaded Image", use_container_width=True)
|
16 |
-
|
|
|
11 |
uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "png", "jpeg"])
|
12 |
|
13 |
if uploaded_file is not None:
|
14 |
+
#img = Image.open(uploaded_file)
|
15 |
#st.image(img, caption="Uploaded Image", use_container_width=True)
|
16 |
+
st.markdown('<div class="orange-background">This is a can. You earn 0.50</div>', unsafe_allow_html=True)
|