gravity / pages /user.py
ayushnoori's picture
Add user authentication
f128fe5
raw
history blame
234 Bytes
import streamlit as st
from menu import menu_with_redirect
# Redirect to app.py if not logged in, otherwise show the navigation menu
menu_with_redirect()
st.title("Welcome to Gravity")
st.markdown(f"Hello, {st.session_state.name}!")