Jfink09 commited on
Commit
d4ced26
·
verified ·
1 Parent(s): b304217

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -125,21 +125,21 @@ def main():
125
  st.session_state.aca_axis = None
126
 
127
  # Input fields using session state
128
- st.markdown('<p style="font-size: 22px; color: white; margin-bottom: 0px;">Enter Patient Age (18-90 Years):</p>', unsafe_allow_html=True)
129
  #age = st.number_input('Enter Patient Age (18-90 Years):',
130
  age = st.number_input('',
131
  min_value=18.0, max_value=90.0,
132
  value=st.session_state.age if st.session_state.age is not None else None,
133
  step=0.1,
134
  key='age')
135
- st.markdown('<p style="font-size: 22px; color: white; margin-bottom: 0px;">Enter ACA Magnitude (0-10 Diopters):</p>', unsafe_allow_html=True)
136
  #aca_magnitude = st.number_input('Enter ACA Magnitude (0-10 Diopters):',
137
  aca_magnitude = st.number_input('',
138
  min_value=0.0, max_value=10.0,
139
  value=st.session_state.aca_magnitude if st.session_state.aca_magnitude is not None else None,
140
  step=0.01,
141
  key='aca_magnitude')
142
- st.markdown('<p style="font-size: 22px; color: white; margin-bottom: 0px;">Enter ACA Axis (0-180 Degrees):</p>', unsafe_allow_html=True)
143
  #aca_axis = st.number_input('Enter ACA Axis (0-180 Degrees):',
144
  aca_axis = st.number_input('',
145
  min_value=0.0, max_value=180.0,
 
125
  st.session_state.aca_axis = None
126
 
127
  # Input fields using session state
128
+ st.markdown('<p style="font-size: 20px; color: white; margin-bottom: 0px;">Enter Patient Age (18-90 Years):</p>', unsafe_allow_html=True)
129
  #age = st.number_input('Enter Patient Age (18-90 Years):',
130
  age = st.number_input('',
131
  min_value=18.0, max_value=90.0,
132
  value=st.session_state.age if st.session_state.age is not None else None,
133
  step=0.1,
134
  key='age')
135
+ st.markdown('<p style="font-size: 20px; color: white; margin-bottom: 0px;">Enter ACA Magnitude (0-10 Diopters):</p>', unsafe_allow_html=True)
136
  #aca_magnitude = st.number_input('Enter ACA Magnitude (0-10 Diopters):',
137
  aca_magnitude = st.number_input('',
138
  min_value=0.0, max_value=10.0,
139
  value=st.session_state.aca_magnitude if st.session_state.aca_magnitude is not None else None,
140
  step=0.01,
141
  key='aca_magnitude')
142
+ st.markdown('<p style="font-size: 20px; color: white; margin-bottom: 0px;">Enter ACA Axis (0-180 Degrees):</p>', unsafe_allow_html=True)
143
  #aca_axis = st.number_input('Enter ACA Axis (0-180 Degrees):',
144
  aca_axis = st.number_input('',
145
  min_value=0.0, max_value=180.0,