add admin page to manage private data

This commit is contained in:
Carl Zhang
2025-10-13 23:50:53 -05:00
parent c4066ed15e
commit 421d263b6b
9 changed files with 289 additions and 3 deletions

8
app.py
View File

@@ -2,13 +2,12 @@ import streamlit as st
import webpages as pg
from webpages.navigation import navigation_bar as nv
st.set_page_config(page_title="BuffTeks Student Organization",
page_icon="./images/BuffTeksLogo.png",
layout = "centered"
)
page_label = nv()
# block for main pages
@@ -64,4 +63,7 @@ elif page_label == "CoreTeks":
elif page_label == "Testing":
pg.testing()
elif page_label == "Reference":
pg.reference()
pg.reference()
elif page_label == "Admin":
pg.admin()