AI_NANBAN_CBSE / app.py
rameshmoorthy's picture
Update app.py
212e76b verified
raw
history blame
380 Bytes
import streamlit as st
import clear
import home
import register
import login
homeTab, registerTab, loginTab, quizTab, clear_tab = st.tabs(["Home", "Register Student", "Student Login", 'Take a QUiz',"Clear"])
with homeTab:
home.home()
with registerTab:
register.register()
with loginTab:
login.login()
with quizTab:
quiz.quiz()
with clear_tab:
clear.clear()