shubham142000 commited on
Commit
c3890d3
·
verified ·
1 Parent(s): bbc4916

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -0
app.py CHANGED
@@ -100,3 +100,24 @@ else:
100
 
101
  else:
102
  st.write("Please enter text to classify.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
 
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>&copy; Shubham Kale and Prof Ganesh Baglar, IIIT Delhi</b>
120
+ </div>
121
+ """,
122
+ unsafe_allow_html=True
123
+ )