Spaces:
Runtime error
Runtime error
changed pages titles
Browse files
app.py
CHANGED
|
@@ -25,6 +25,7 @@ def authenticate_user():
|
|
| 25 |
|
| 26 |
return False
|
| 27 |
|
|
|
|
| 28 |
def main():
|
| 29 |
|
| 30 |
if "authenticated" not in st.session_state:
|
|
@@ -41,10 +42,10 @@ def main():
|
|
| 41 |
add_field.add_drawing()
|
| 42 |
|
| 43 |
elif options == "Manage Fields":
|
| 44 |
-
st.title("
|
| 45 |
edit.edit_fields()
|
| 46 |
elif options == "Monitor Fields":
|
| 47 |
-
st.title("
|
| 48 |
monitor.monitor_fields()
|
| 49 |
else:
|
| 50 |
authenticate_user()
|
|
|
|
| 25 |
|
| 26 |
return False
|
| 27 |
|
| 28 |
+
|
| 29 |
def main():
|
| 30 |
|
| 31 |
if "authenticated" not in st.session_state:
|
|
|
|
| 42 |
add_field.add_drawing()
|
| 43 |
|
| 44 |
elif options == "Manage Fields":
|
| 45 |
+
st.title(":orange[Field Management]")
|
| 46 |
edit.edit_fields()
|
| 47 |
elif options == "Monitor Fields":
|
| 48 |
+
st.title(":orange[Field Monitoring]")
|
| 49 |
monitor.monitor_fields()
|
| 50 |
else:
|
| 51 |
authenticate_user()
|