Junaidb commited on
Commit
a5d5026
·
verified ·
1 Parent(s): 578d18f

Update pages/biolab.py

Browse files
Files changed (1) hide show
  1. pages/biolab.py +11 -0
pages/biolab.py CHANGED
@@ -12,6 +12,17 @@ st.set_page_config(
12
  )
13
 
14
 
 
 
 
 
 
 
 
 
 
 
 
15
  hardcodedlogin_user={
16
 
17
  "usernames":["admin"],
 
12
  )
13
 
14
 
15
+ if 'logged_in' not in st.session_state:
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.projetname = ""
23
+
24
+
25
+
26
  hardcodedlogin_user={
27
 
28
  "usernames":["admin"],