Junaidb commited on
Commit
9990d3e
·
verified ·
1 Parent(s): 1158e65

Update pages/biolab.py

Browse files
Files changed (1) hide show
  1. pages/biolab.py +3 -4
pages/biolab.py CHANGED
@@ -25,13 +25,12 @@ if 'projectname' not in st.session_state:
25
  tab1,tab2=st.tabs(["LOGIN","REGISTER"])
26
 
27
  with tab1:
28
- REGISTER()
29
-
30
- with tab2:
31
-
32
  if st.session_state.logged_in:
33
  APP()
34
  else:
35
  LOGIN()
 
 
 
36
 
37
 
 
25
  tab1,tab2=st.tabs(["LOGIN","REGISTER"])
26
 
27
  with tab1:
 
 
 
 
28
  if st.session_state.logged_in:
29
  APP()
30
  else:
31
  LOGIN()
32
+
33
+ with tab2:
34
+ REGISTER()
35
 
36