Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,6 +18,8 @@ def form_dialog():
|
|
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"):
|
|
|
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 |
+
lgbtq = st.radio("Do you identify as LGBTQ+ (some shelters serve specifically this community", ("Yes", "No"))
|
22 |
+
domestic_violence = st.radio("Are you experiencing domestic violence (some shelters serve these individuals specifically", ("Yes", "No"))
|
23 |
needs = st.text_area("Needs (Optional - tell us what you need and how we can help)", value="")
|
24 |
|
25 |
if st.button("Submit"):
|