Update app.py
Browse files
app.py
CHANGED
|
@@ -101,23 +101,47 @@ else:
|
|
| 101 |
else:
|
| 102 |
st.write("Please enter text to classify.")
|
| 103 |
|
| 104 |
-
# Footer
|
| 105 |
-
st.markdown(
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
else:
|
| 102 |
st.write("Please enter text to classify.")
|
| 103 |
|
| 104 |
+
# # Footer
|
| 105 |
+
# st.markdown(
|
| 106 |
+
# """
|
| 107 |
+
# <style>
|
| 108 |
+
# .footer {
|
| 109 |
+
# position: fixed;
|
| 110 |
+
# bottom: 0;
|
| 111 |
+
# width: 100%;
|
| 112 |
+
# text-align: center;
|
| 113 |
+
# padding: 10px;
|
| 114 |
+
# background-color: #f1f1f1;
|
| 115 |
+
# color: black;
|
| 116 |
+
# }
|
| 117 |
+
# </style>
|
| 118 |
+
# <div class="footer">
|
| 119 |
+
# <b>© Shubham Kale and Prof Ganesh Baglar, IIIT Delhi</b>
|
| 120 |
+
# </div>
|
| 121 |
+
# """,
|
| 122 |
+
# unsafe_allow_html=True
|
| 123 |
+
# )
|
| 124 |
+
# Add a footer
|
| 125 |
+
st.markdown(
|
| 126 |
+
"""
|
| 127 |
+
<style>
|
| 128 |
+
.footer {
|
| 129 |
+
position: fixed;
|
| 130 |
+
left: 0;
|
| 131 |
+
bottom: 0;
|
| 132 |
+
width: 100%;
|
| 133 |
+
background-color: #f1f1f1;
|
| 134 |
+
color: black;
|
| 135 |
+
text-align: center;
|
| 136 |
+
padding: 10px;
|
| 137 |
+
}
|
| 138 |
+
.footer p {
|
| 139 |
+
font-size: 1.2em;
|
| 140 |
+
font-weight: bold;
|
| 141 |
+
}
|
| 142 |
+
</style>
|
| 143 |
+
<div class="footer">
|
| 144 |
+
<p>© Shubham Kale and Prof Ganesh Baglar, IIIT Delhi</p>
|
| 145 |
+
</div>
|
| 146 |
+
""", unsafe_allow_html=True
|
| 147 |
+
)
|