Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -43,6 +43,9 @@ def form_dialog():
|
|
| 43 |
if 'form_submitted' not in st.session_state:
|
| 44 |
st.session_state.form_submitted = False
|
| 45 |
|
|
|
|
|
|
|
|
|
|
| 46 |
if not st.session_state.form_submitted:
|
| 47 |
if st.button("Open Form"):
|
| 48 |
form_dialog()
|
|
|
|
| 43 |
if 'form_submitted' not in st.session_state:
|
| 44 |
st.session_state.form_submitted = False
|
| 45 |
|
| 46 |
+
# Adding a title with an emoji
|
| 47 |
+
st.title("📝 Information Form")
|
| 48 |
+
|
| 49 |
if not st.session_state.form_submitted:
|
| 50 |
if st.button("Open Form"):
|
| 51 |
form_dialog()
|