Update app.py
Browse files
app.py
CHANGED
|
@@ -236,6 +236,7 @@ def delete_person_ui():
|
|
| 236 |
def authenticate_user_ui():
|
| 237 |
st.title("Insta's EYE")
|
| 238 |
st.sidebar.title("Options")
|
|
|
|
| 239 |
|
| 240 |
if st.session_state.auth_state["signed_in"]:
|
| 241 |
st.sidebar.button("Sign Out", on_click=logout)
|
|
@@ -329,7 +330,7 @@ def display_tour_steps(steps):
|
|
| 329 |
def main():
|
| 330 |
st.sidebar.title("Options")
|
| 331 |
option = st.sidebar.radio("Select Option", ["Add Person", "Recognize Face", "Delete Person", "Recognize Face (Optimal)"])
|
| 332 |
-
|
| 333 |
if option == "Add Person":
|
| 334 |
add_person_ui()
|
| 335 |
elif option == "Recognize Face":
|
|
|
|
| 236 |
def authenticate_user_ui():
|
| 237 |
st.title("Insta's EYE")
|
| 238 |
st.sidebar.title("Options")
|
| 239 |
+
display_tour_steps(steps)
|
| 240 |
|
| 241 |
if st.session_state.auth_state["signed_in"]:
|
| 242 |
st.sidebar.button("Sign Out", on_click=logout)
|
|
|
|
| 330 |
def main():
|
| 331 |
st.sidebar.title("Options")
|
| 332 |
option = st.sidebar.radio("Select Option", ["Add Person", "Recognize Face", "Delete Person", "Recognize Face (Optimal)"])
|
| 333 |
+
|
| 334 |
if option == "Add Person":
|
| 335 |
add_person_ui()
|
| 336 |
elif option == "Recognize Face":
|