Update app.py
Browse files
app.py
CHANGED
|
@@ -290,7 +290,9 @@ def tour_guide_ui():
|
|
| 290 |
# Streamlit interface for user authentication
|
| 291 |
def authenticate_user_ui():
|
| 292 |
st.title("Insta's EYE")
|
| 293 |
-
|
|
|
|
|
|
|
| 294 |
st.sidebar.title("Options")
|
| 295 |
|
| 296 |
if st.session_state.auth_state["signed_in"]:
|
|
|
|
| 290 |
# Streamlit interface for user authentication
|
| 291 |
def authenticate_user_ui():
|
| 292 |
st.title("Insta's EYE")
|
| 293 |
+
# Display the logo
|
| 294 |
+
logo_path = os.path.join(current_directory, "Explore+.png")
|
| 295 |
+
st.image(logo_path, width=100)
|
| 296 |
st.sidebar.title("Options")
|
| 297 |
|
| 298 |
if st.session_state.auth_state["signed_in"]:
|