gravity / pages /validate.py
ayushnoori's picture
Rename to predict and add external database links
f18a5e1
raw
history blame
512 Bytes
import streamlit as st
from menu import menu_with_redirect
# Path manipulation
from pathlib import Path
# Custom and other imports
import project_config
# Redirect to app.py if not logged in, otherwise show the navigation menu
menu_with_redirect()
# Header
st.image(str(project_config.MEDIA_DIR / 'validate_header.svg'), use_column_width=True)
# Main content
# st.markdown(f"Hello, {st.session_state.name}!")
st.subheader("Validate Predictions", divider = "green")
# Coming soon
st.write("Coming soon...")