Spaces:
Sleeping
Sleeping
File size: 380 Bytes
adff838 212e76b adff838 212e76b adff838 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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() |