# From https://docs.streamlit.io/develop/tutorials/multipage/st.page_link-nav import streamlit as st def authenticated_menu(): st.markdown(""" """, unsafe_allow_html=True) # Show the user's profile picture st.sidebar.markdown(f'
', unsafe_allow_html=True) # Show the user's name # st.sidebar.markdown(f"Logged in as {st.session_state.name}.") st.sidebar.markdown(f'
{st.session_state.name}
', unsafe_allow_html=True) st.sidebar.markdown("---") # Show a navigation menu for authenticated users # st.sidebar.page_link("app.py", label="Switch Accounts", icon="🔒") st.sidebar.page_link("pages/about.py", label="About", icon="📖") st.sidebar.page_link("pages/input.py", label="Input", icon="💡") st.sidebar.page_link("pages/validate.py", label="Validate", icon="✅") st.sidebar.page_link("pages/explore.py", label="Explore", icon="🔍") if st.session_state.role in ["admin"]: st.sidebar.page_link("pages/admin.py", label="Manage Users", icon="🔧") # Show the logout button st.sidebar.markdown("---") st.sidebar.button("Log Out", on_click=lambda: st.session_state.clear()) def unauthenticated_menu(): # Show a navigation menu for unauthenticated users st.sidebar.page_link("app.py", label="Log In", icon="🔒") def menu(): # Determine if a user is logged in or not, then show the correct navigation menu if "role" not in st.session_state or st.session_state.role is None: unauthenticated_menu() return authenticated_menu() def menu_with_redirect(): # Redirect users to the main page if not logged in, otherwise continue to # render the navigation menu if "role" not in st.session_state or st.session_state.role is None: st.switch_page("app.py") menu()