Spaces:
Sleeping
Sleeping
Update pages/biolab.py
Browse files- pages/biolab.py +14 -17
pages/biolab.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
from login import LOGIN
|
| 3 |
-
from register import REGISTER
|
|
|
|
| 4 |
from ui import APP
|
| 5 |
|
| 6 |
# --- Page Configuration (Optional but good practice) ---
|
|
@@ -12,25 +13,21 @@ st.set_page_config(
|
|
| 12 |
)
|
| 13 |
|
| 14 |
|
| 15 |
-
|
| 16 |
-
st.session_state.logged_in = False
|
| 17 |
|
| 18 |
-
if 'username' not in st.session_state:
|
| 19 |
-
|
| 20 |
|
| 21 |
-
if 'projectname' not in st.session_state:
|
| 22 |
-
|
| 23 |
|
| 24 |
-
|
| 25 |
-
tab1,tab2=st.tabs(["LOGIN","REGISTER"])
|
| 26 |
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
|
| 33 |
-
|
| 34 |
-
REGISTER()
|
| 35 |
|
| 36 |
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
#from login import LOGIN
|
| 3 |
+
#from register import REGISTER
|
| 4 |
+
|
| 5 |
from ui import APP
|
| 6 |
|
| 7 |
# --- Page Configuration (Optional but good practice) ---
|
|
|
|
| 13 |
)
|
| 14 |
|
| 15 |
|
| 16 |
+
## st.session_state.logged_in = False
|
|
|
|
| 17 |
|
| 18 |
+
#if 'username' not in st.session_state:
|
| 19 |
+
# st.session_state.username = ""
|
| 20 |
|
| 21 |
+
#if 'projectname' not in st.session_state:
|
| 22 |
+
# st.session_state.projectname = ""
|
| 23 |
|
|
|
|
|
|
|
| 24 |
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
#tab1,tab2=st.tabs(["LOGIN","REGISTER"])
|
| 28 |
+
|
| 29 |
+
APP()
|
| 30 |
|
| 31 |
+
## REGISTER()
|
|
|
|
| 32 |
|
| 33 |
|