Update app.py
Browse files
app.py
CHANGED
|
@@ -342,11 +342,19 @@ def tour_guide_ui():
|
|
| 342 |
|
| 343 |
# Streamlit interface for user authentication
|
| 344 |
def authenticate_user_ui():
|
| 345 |
-
|
| 346 |
-
|
| 347 |
-
|
| 348 |
-
|
| 349 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 350 |
|
| 351 |
if st.session_state.auth_state["signed_in"]:
|
| 352 |
st.sidebar.button("Sign Out", on_click=logout)
|
|
|
|
| 342 |
|
| 343 |
# Streamlit interface for user authentication
|
| 344 |
def authenticate_user_ui():
|
| 345 |
+
|
| 346 |
+
c30, c31, c32 = st.columns([0.2, 0.1, 3])
|
| 347 |
+
with c30:
|
| 348 |
+
|
| 349 |
+
st.caption("")
|
| 350 |
+
# Display the logo
|
| 351 |
+
logo_path = os.path.join(current_directory, "Explore+.png")
|
| 352 |
+
logo = Image.open(logo_path)
|
| 353 |
+
st.image(logo, width=60)
|
| 354 |
+
|
| 355 |
+
with c32:
|
| 356 |
+
st.title("Insta's EYE")
|
| 357 |
+
st.sidebar.title("Options")
|
| 358 |
|
| 359 |
if st.session_state.auth_state["signed_in"]:
|
| 360 |
st.sidebar.button("Sign Out", on_click=logout)
|