Update app.py
Browse files
app.py
CHANGED
|
@@ -509,7 +509,7 @@ def display_tour_steps(steps):
|
|
| 509 |
# Update the main function to include the feedback option
|
| 510 |
def main():
|
| 511 |
st.sidebar.title("Options")
|
| 512 |
-
option = st.sidebar.radio("Select Option", ["Add Person", "Recognize Face", "Delete Person", "Recognize Face (Optimal)", "Tour Guide", "Feedback", "
|
| 513 |
|
| 514 |
if option == "Add Person":
|
| 515 |
add_person_ui()
|
|
@@ -523,8 +523,8 @@ def main():
|
|
| 523 |
tour_guide_ui()
|
| 524 |
elif option == "Feedback":
|
| 525 |
feedback_ui()
|
| 526 |
-
elif option == "
|
| 527 |
-
|
| 528 |
elif option == "History":
|
| 529 |
display_history(st.session_state.auth_state["user"].email)
|
| 530 |
elif option == "Delete User":
|
|
|
|
| 509 |
# Update the main function to include the feedback option
|
| 510 |
def main():
|
| 511 |
st.sidebar.title("Options")
|
| 512 |
+
option = st.sidebar.radio("Select Option", ["Add Person", "Recognize Face", "Delete Person", "Recognize Face (Optimal)", "Tour Guide", "Feedback", "Messaging", "History", "Delete User"])
|
| 513 |
|
| 514 |
if option == "Add Person":
|
| 515 |
add_person_ui()
|
|
|
|
| 523 |
tour_guide_ui()
|
| 524 |
elif option == "Feedback":
|
| 525 |
feedback_ui()
|
| 526 |
+
elif option == "Messaging":
|
| 527 |
+
messaging_ui()
|
| 528 |
elif option == "History":
|
| 529 |
display_history(st.session_state.auth_state["user"].email)
|
| 530 |
elif option == "Delete User":
|