Springboardmen commited on
Commit
65a0718
·
verified ·
1 Parent(s): 0e7bd78

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +13 -6
src/streamlit_app.py CHANGED
@@ -1,9 +1,16 @@
1
  import streamlit as st
2
 
3
- st.title("FIT Plan AI -Personalised Fitness Plan generator")
4
- st.selectbox("Select", Flexible,
5
- Weight loss,
6
- build muscle,
7
- Strength gaining,
8
- abs building)
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("FIT Plan AI Personalized Fitness Plan Generator")
 
 
 
 
 
4
 
5
+ goal = st.selectbox(
6
+ "Goal",
7
+ [
8
+ "Flexibility",
9
+ "Weight Loss",
10
+ "Build Muscle",
11
+ "Strength Gaining",
12
+ "Abs Building"
13
+ ]
14
+ )
15
+
16
+ st.write("You selected:", goal)