Update app.py
Browse files
app.py
CHANGED
|
@@ -361,16 +361,16 @@ def authenticate_user_ui():
|
|
| 361 |
|
| 362 |
c30, c31, c32 = st.columns([0.2, 0.1, 3])
|
| 363 |
with c30:
|
| 364 |
-
st.title("Insta's EYE")
|
| 365 |
-
st.sidebar.title("Options")
|
| 366 |
-
|
| 367 |
-
with c32:
|
| 368 |
st.caption("")
|
| 369 |
# Display the logo
|
| 370 |
logo_path = os.path.join(current_directory, "Explore+.png")
|
| 371 |
logo = Image.open(logo_path)
|
| 372 |
st.image(logo, width=60)
|
| 373 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 374 |
if st.session_state.auth_state["signed_in"]:
|
| 375 |
st.sidebar.button("Sign Out", on_click=logout)
|
| 376 |
st.title("Welcome!")
|
|
|
|
| 361 |
|
| 362 |
c30, c31, c32 = st.columns([0.2, 0.1, 3])
|
| 363 |
with c30:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 364 |
st.caption("")
|
| 365 |
# Display the logo
|
| 366 |
logo_path = os.path.join(current_directory, "Explore+.png")
|
| 367 |
logo = Image.open(logo_path)
|
| 368 |
st.image(logo, width=60)
|
| 369 |
|
| 370 |
+
with c32:
|
| 371 |
+
st.title("Insta's EYE")
|
| 372 |
+
st.sidebar.title("Options")
|
| 373 |
+
|
| 374 |
if st.session_state.auth_state["signed_in"]:
|
| 375 |
st.sidebar.button("Sign Out", on_click=logout)
|
| 376 |
st.title("Welcome!")
|