Springboardmen commited on
Commit
c704836
·
verified ·
1 Parent(s): 52b959d

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +18 -2
src/streamlit_app.py CHANGED
@@ -3,5 +3,21 @@ import streamlit as st
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)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
7
+ st.subheader("Available Equipment")
8
+
9
+ dumbbells = st.checkbox("Dumbbells")
10
+ bands = st.checkbox("Resistance Bands")
11
+ Yoga = st.checkbox("Yoga mat")
12
+ Inclined bench = st.checkbox("Inclined bench")
13
+ Thread mill = st.checkbox("Thread mill")
14
+ Cycle = st.checkbox("Cycle")
15
+ Skipping rope = st.checkbox("Skipping rope")
16
+ Hand gripper = st.checkbox("Hand gripper")
17
+ PullUps = st.checkbox("Pullups bar")
18
+ Weight = st.checkbox("Weight Plates")
19
+ Hula = st.checkbox("Hula hoop ring")
20
+ bosu = st.checkbox("Bosu ball")
21
+ no_equipment = st.checkbox("No Equipment")
22
+
23
+ st.write("You selected:", goal)