Junaidb commited on
Commit
f57bc74
·
verified ·
1 Parent(s): c55a531

Update ui.py

Browse files
Files changed (1) hide show
  1. ui.py +17 -12
ui.py CHANGED
@@ -64,21 +64,26 @@ def APP():
64
  st.markdown("<p style='color:white;background-color:orange;font-weight:bold'> Nanobody [CANCER targeted]</p>",unsafe_allow_html=True)
65
  with st.expander("info"):
66
  st.info("This Interface lets u specify a high level biological query (Protein Engineering Query) and execute the pipeline for the end product i.e Engineered Nanobody",icon=":material/info:")
67
-
68
- with st.form("bio",border=False):
69
 
70
- uid=None
71
- project_name=None
72
 
73
- @st.dialog("set Username and Projectname")
74
- def setup():
75
- #with st.expander("setup",icon=":material/settings:"):
76
- uid=st.text_input("enter username")
77
- project_name=st.text_input("enter project name ")
78
 
79
- st.markdown(":material/settings:")
80
- if st.button("setup"):
81
- setup()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
 
84
  if not uid or not project_name:
 
64
  st.markdown("<p style='color:white;background-color:orange;font-weight:bold'> Nanobody [CANCER targeted]</p>",unsafe_allow_html=True)
65
  with st.expander("info"):
66
  st.info("This Interface lets u specify a high level biological query (Protein Engineering Query) and execute the pipeline for the end product i.e Engineered Nanobody",icon=":material/info:")
 
 
67
 
 
 
68
 
 
 
 
 
 
69
 
70
+ uid=None
71
+ project_name=None
72
+
73
+ @st.dialog("set Username and Projectname")
74
+ def setup():
75
+ uid=st.text_input("enter username")
76
+ project_name=st.text_input("enter project name ")
77
+
78
+ st.markdown(":material/settings:")
79
+ if st.button("setup"):
80
+ setup()
81
+
82
+
83
+
84
+ with st.form("bio",border=False):
85
+
86
+
87
 
88
 
89
  if not uid or not project_name: