Junaidb commited on
Commit
d461ae3
·
verified ·
1 Parent(s): 6acf4f9

Update ui.py

Browse files
Files changed (1) hide show
  1. ui.py +11 -10
ui.py CHANGED
@@ -19,21 +19,17 @@ def InitSession():
19
  InitSession()
20
 
21
 
22
-
23
-
24
  def APP():
25
 
26
  col1,col2=st.columns(2)
27
 
28
  with col1:
29
-
30
- #st.title("newMATTER")
31
  st.markdown("""
32
  <h2>new <i style='color:red'>MATTER</i> </h2>
33
  """,unsafe_allow_html=True)
34
 
35
  with col2:
36
- st.image("https://pub-e4d20ff4ef334a2894d440ac56d680db.r2.dev/flask.gif",width=100)
37
 
38
 
39
  tab1, tab2, tab3 = st.tabs(["PROTEIN ENGINEERING LAB", "EXECUTED OPERATIONS", "LAB OUTPUT"])
@@ -49,7 +45,8 @@ def APP():
49
 
50
  0: ":material/pill:",
51
  1: ":material/vaccines:",
52
- 2: ":material/labresearch:"
 
53
 
54
  }
55
 
@@ -73,10 +70,10 @@ def APP():
73
 
74
  uid=None
75
  project_name=None
76
-
77
- st.markdown(":material/settings:")
78
- uid=st.text_input("enter username")
79
- project_name=st.text_input("enter project name ")
80
 
81
 
82
 
@@ -130,6 +127,10 @@ def APP():
130
 
131
  if selection ==2:
132
  st.markdown("<p style='color:white;background-color:orange;font-weight:bold'>Operation Details </p>",unsafe_allow_html=True)
 
 
 
 
133
 
134
 
135
 
 
19
  InitSession()
20
 
21
 
 
 
22
  def APP():
23
 
24
  col1,col2=st.columns(2)
25
 
26
  with col1:
 
 
27
  st.markdown("""
28
  <h2>new <i style='color:red'>MATTER</i> </h2>
29
  """,unsafe_allow_html=True)
30
 
31
  with col2:
32
+ st.image("https://pub-e4d20ff4ef334a2894d440ac56d680db.r2.dev/flask.gif",width=80)
33
 
34
 
35
  tab1, tab2, tab3 = st.tabs(["PROTEIN ENGINEERING LAB", "EXECUTED OPERATIONS", "LAB OUTPUT"])
 
45
 
46
  0: ":material/pill:",
47
  1: ":material/vaccines:",
48
+ 2: ":material/labresearch:",
49
+ 3: ":material/warning:"
50
 
51
  }
52
 
 
70
 
71
  uid=None
72
  project_name=None
73
+ with st.expander(icon=":material/settings:")
74
+
75
+ uid=st.text_input("enter username")
76
+ project_name=st.text_input("enter project name ")
77
 
78
 
79
 
 
127
 
128
  if selection ==2:
129
  st.markdown("<p style='color:white;background-color:orange;font-weight:bold'>Operation Details </p>",unsafe_allow_html=True)
130
+
131
+ if selection==3:
132
+ st.markdown("<p style='color:white;background-color:orange;font-weight:bold'> This system is running in trial phase </p>",unsafe_allow_html=True)
133
+
134
 
135
 
136