Spaces:
Runtime error
Runtime error
ivan-savchuk
commited on
Commit
β’
2e2bd12
1
Parent(s):
dfa96a4
Update app.py
Browse files
app.py
CHANGED
@@ -56,7 +56,14 @@ if __name__ == "__main__":
|
|
56 |
# get instance of DocumentSearch class
|
57 |
surfer = DocumentSearch()
|
58 |
# streamlit part starts here with title
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
# input form
|
61 |
with st.form("my_form"):
|
62 |
# here we have input space
|
|
|
56 |
# get instance of DocumentSearch class
|
57 |
surfer = DocumentSearch()
|
58 |
# streamlit part starts here with title
|
59 |
+
title = """
|
60 |
+
<h1 style='
|
61 |
+
text-align: center;
|
62 |
+
color: #3CB371'>
|
63 |
+
Medical Search
|
64 |
+
</h1>
|
65 |
+
"""
|
66 |
+
st.markdown(title, unsafe_allow_html=True)
|
67 |
# input form
|
68 |
with st.form("my_form"):
|
69 |
# here we have input space
|