Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -13,9 +13,10 @@ with st.form("my_input"):
13
  hobby=st.text_input("hobby")
14
 
15
  # Every form must have a submit button.
16
- submitted = st.form_submit_button("Submit")
17
- clear = st.form_submit_button("Clear")
18
-
 
19
 
20
  with st.form("my_output"):
21
  if submitted:
 
13
  hobby=st.text_input("hobby")
14
 
15
  # Every form must have a submit button.
16
+ col1, col2=st.columns(2)
17
+
18
+ submitted = st.form_submit_button("Submit")
19
+ clear = st.form_submit_button("Clear")
20
 
21
  with st.form("my_output"):
22
  if submitted: