Junaidb commited on
Commit
dddf0f5
·
verified ·
1 Parent(s): bc044e2

Update pages/biolab.py

Browse files
Files changed (1) hide show
  1. pages/biolab.py +13 -0
pages/biolab.py CHANGED
@@ -25,6 +25,19 @@ st.set_page_config(
25
 
26
 
27
  #tab1,tab2=st.tabs(["LOGIN","REGISTER"])
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  APP()
30
 
 
25
 
26
 
27
  #tab1,tab2=st.tabs(["LOGIN","REGISTER"])
28
+ def InitSession():
29
+
30
+
31
+
32
+ if "projectname" not in st.session_state:
33
+ st.session_state.projectname=""
34
+
35
+ #if "loggedin" not in st.session_state:
36
+ # st.session_state.loggedin=False
37
+
38
+
39
+ InitSession()
40
+
41
 
42
  APP()
43