Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -12
src/streamlit_app.py
CHANGED
|
@@ -2,15 +2,6 @@ import streamlit as st
|
|
| 2 |
|
| 3 |
st.title("FIT Plan AI – Personalized Fitness Plan Generator")
|
| 4 |
|
| 5 |
-
goal = st.selectbox(
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
"Flexibility",
|
| 9 |
-
"Weight Loss",
|
| 10 |
-
"Build Muscle",
|
| 11 |
-
"Strength Gaining",
|
| 12 |
-
"Abs Building"
|
| 13 |
-
]
|
| 14 |
-
)
|
| 15 |
-
|
| 16 |
-
st.write("You selected:", goal)
|
|
|
|
| 2 |
|
| 3 |
st.title("FIT Plan AI – Personalized Fitness Plan Generator")
|
| 4 |
|
| 5 |
+
goal = st.selectbox("Goal",["Flexibility","Weight Loss", "Build Muscle","Strength Gaining","ABs Building" ])
|
| 6 |
+
equipment = st.multiselect( "Available equipment", ["No Equipment", "Dumbbells", "Resistance Bands", "Gym Machines"])
|
| 7 |
+
st.write("You selected:", goal,equipment)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|