Spaces:
Sleeping
Sleeping
rameshmoorthy
commited on
Commit
•
212e76b
1
Parent(s):
6b64d62
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import home
|
|
4 |
import register
|
5 |
import login
|
6 |
|
7 |
-
homeTab, registerTab, loginTab, clear_tab = st.tabs(["Home", "Register Student", "Student Login", "Clear"])
|
8 |
|
9 |
|
10 |
with homeTab:
|
@@ -13,5 +13,7 @@ with registerTab:
|
|
13 |
register.register()
|
14 |
with loginTab:
|
15 |
login.login()
|
|
|
|
|
16 |
with clear_tab:
|
17 |
clear.clear()
|
|
|
4 |
import register
|
5 |
import login
|
6 |
|
7 |
+
homeTab, registerTab, loginTab, quizTab, clear_tab = st.tabs(["Home", "Register Student", "Student Login", 'Take a QUiz',"Clear"])
|
8 |
|
9 |
|
10 |
with homeTab:
|
|
|
13 |
register.register()
|
14 |
with loginTab:
|
15 |
login.login()
|
16 |
+
with quizTab:
|
17 |
+
quiz.quiz()
|
18 |
with clear_tab:
|
19 |
clear.clear()
|