Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -16,8 +16,8 @@ def form_dialog():
|
|
16 |
sex = st.radio("Sex", ("Male", "Female", "Other"))
|
17 |
city = st.radio("City", ("Oakland", "Berkeley", "SF"))
|
18 |
zipcode = st.text_input("Zipcode (Optional)", value="")
|
19 |
-
urgency = st.radio("
|
20 |
-
duration = st.radio("
|
21 |
needs = st.text_area("Needs (Optional - tell us what you need and how we can help)", value="")
|
22 |
|
23 |
if st.button("Submit"):
|
|
|
16 |
sex = st.radio("Sex", ("Male", "Female", "Other"))
|
17 |
city = st.radio("City", ("Oakland", "Berkeley", "SF"))
|
18 |
zipcode = st.text_input("Zipcode (Optional)", value="")
|
19 |
+
urgency = st.radio("How quickly do you need help?", ("Today", "In the next few days", "In a week or more"))
|
20 |
+
duration = st.radio("How long do you need a place to stay?", ("A year or more", "A couple of months", "A month or less"))
|
21 |
needs = st.text_area("Needs (Optional - tell us what you need and how we can help)", value="")
|
22 |
|
23 |
if st.button("Submit"):
|