Spaces:
Sleeping
Sleeping
rameshmoorthy
commited on
Commit
•
fdf8e03
1
Parent(s):
401dd43
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,
|
8 |
|
9 |
|
10 |
with homeTab:
|
@@ -13,7 +13,5 @@ with registerTab:
|
|
13 |
register.register()
|
14 |
with loginTab:
|
15 |
login.login()
|
16 |
-
with quizTab:
|
17 |
-
quiz.quiz()
|
18 |
with clear_tab:
|
19 |
clear.clear()
|
|
|
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 |
register.register()
|
14 |
with loginTab:
|
15 |
login.login()
|
|
|
|
|
16 |
with clear_tab:
|
17 |
clear.clear()
|