Spaces:
Running
Running
Yara Kyrychenko
commited on
Commit
Β·
6a01cee
1
Parent(s):
1e27a05
fix text
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ if 'p' not in st.query_params:
|
|
62 |
with st.sidebar:
|
63 |
st.markdown("# Let's talk climate action!")
|
64 |
st.markdown(f"""
|
65 |
-
{"β" if st.session_state.submitted else "β"} **Step 1. Complete a form
|
66 |
|
67 |
{"β" if len(st.session_state.messages) > 1 else "β"} **Step 2. Type in the search box to search Google**
|
68 |
|
@@ -71,17 +71,17 @@ with st.sidebar:
|
|
71 |
- *What's better for the environment: a year of vegetarianism or skipping one transatlantic flight?*
|
72 |
- *How do the emissions saved by switching to an EV compare to recycling for a year in terms of trees planted?*
|
73 |
|
74 |
-
β
|
75 |
|
76 |
-
β οΈ You must click on **at least 5 links** before you
|
77 |
|
78 |
-
{"β" if st.session_state.inserted > 1 else "β"} **Step 3. Use the *Finish* button to
|
79 |
|
80 |
-
|
81 |
|
82 |
-
βΊ
|
83 |
|
84 |
-
{"π **All done! Please
|
85 |
""")
|
86 |
if st.session_state.gotit == False or st.session_state.submitted == False:
|
87 |
st.session_state.gotit = st.button("Let's start!", key=None, help=None, use_container_width=True)
|
|
|
62 |
with st.sidebar:
|
63 |
st.markdown("# Let's talk climate action!")
|
64 |
st.markdown(f"""
|
65 |
+
{"β" if st.session_state.submitted else "β"} **Step 1. Complete a form**
|
66 |
|
67 |
{"β" if len(st.session_state.messages) > 1 else "β"} **Step 2. Type in the search box to search Google**
|
68 |
|
|
|
71 |
- *What's better for the environment: a year of vegetarianism or skipping one transatlantic flight?*
|
72 |
- *How do the emissions saved by switching to an EV compare to recycling for a year in terms of trees planted?*
|
73 |
|
74 |
+
β Do not share any personal information (e.g., name or address).
|
75 |
|
76 |
+
β οΈ You must click on **at least 5 links** before you will see a *Finish* button. You can continue before submitting, but **you must finish and enter your completion code into the survey to recieve compensation**.
|
77 |
|
78 |
+
{"β" if st.session_state.inserted > 1 else "β"} **Step 3. Use the *Finish* button to get your completion code**
|
79 |
|
80 |
+
β οΈ Do not forget to copy & paste your completion code!
|
81 |
|
82 |
+
βΊ You can always return to this panel by clicking the arrow on the top left.
|
83 |
|
84 |
+
{"π **All done! Please enter your code in the survye and press *Next*.**" if st.session_state.inserted > 1 else ""}
|
85 |
""")
|
86 |
if st.session_state.gotit == False or st.session_state.submitted == False:
|
87 |
st.session_state.gotit = st.button("Let's start!", key=None, help=None, use_container_width=True)
|