Module_2 / src /streamlit_app.py
Springboardmen's picture
Update src/streamlit_app.py
c704836 verified
raw
history blame
769 Bytes
import streamlit as st
st.title("FIT Plan AI – Personalized Fitness Plan Generator")
goal = st.selectbox("Goal",["Flexibility","Weight Loss", "Build Muscle","Strength Gaining","ABs Building" ])
st.subheader("Available Equipment")
dumbbells = st.checkbox("Dumbbells")
bands = st.checkbox("Resistance Bands")
Yoga = st.checkbox("Yoga mat")
Inclined bench = st.checkbox("Inclined bench")
Thread mill = st.checkbox("Thread mill")
Cycle = st.checkbox("Cycle")
Skipping rope = st.checkbox("Skipping rope")
Hand gripper = st.checkbox("Hand gripper")
PullUps = st.checkbox("Pullups bar")
Weight = st.checkbox("Weight Plates")
Hula = st.checkbox("Hula hoop ring")
bosu = st.checkbox("Bosu ball")
no_equipment = st.checkbox("No Equipment")
st.write("You selected:", goal)