Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -43,6 +43,19 @@ def 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 |
|
|
|
|
| 43 |
if 'form_submitted' not in st.session_state:
|
| 44 |
st.session_state.form_submitted = False
|
| 45 |
|
| 46 |
+
# Page config
|
| 47 |
+
st.set_page_config(
|
| 48 |
+
page_title="Ex-stream-ly Cool App",
|
| 49 |
+
page_icon="🧊",
|
| 50 |
+
layout="wide",
|
| 51 |
+
# initial_sidebar_state="expanded",
|
| 52 |
+
menu_items={
|
| 53 |
+
'Get Help': 'https://www.extremelycoolapp.com/help',
|
| 54 |
+
'Report a bug': "https://www.extremelycoolapp.com/bug",
|
| 55 |
+
'About': "# This is a header. This is an *extremely* cool app!"
|
| 56 |
+
}
|
| 57 |
+
)
|
| 58 |
+
|
| 59 |
# Adding a title with an emoji
|
| 60 |
st.title("📝 Information Form")
|
| 61 |
|