RajaThor commited on
Commit
13afe98
·
verified ·
1 Parent(s): be945c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -5
app.py CHANGED
@@ -342,11 +342,19 @@ def tour_guide_ui():
342
 
343
  # Streamlit interface for user authentication
344
  def authenticate_user_ui():
345
- # Display the logo
346
- logo_path = os.path.join(current_directory, "Explore+.png")
347
- logo = Image.open(logo_path)
348
- st.title("Insta's EYE", st.image(logo, width=50) )
349
- st.sidebar.title("Options")
 
 
 
 
 
 
 
 
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)