streamlit-userverwaltung/pages/dashboard.py

13 lines
183 B
Python

import streamlit as st
import template
template.authenticate()
template.make_logout_section()
with st.sidebar:
st.write('Hello Daschboard')
template.make_dashboard_section()