Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,15 @@ with st.spinner("Loading Model..."):
|
|
32 |
|
33 |
st.markdown("""<h1 style="text-align:center;">Fake News Detection AI</h1>""", unsafe_allow_html=True)
|
34 |
user_input = st.text_input("Article URL")
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
if submit:
|
38 |
last_time = time.time()
|
|
|
32 |
|
33 |
st.markdown("""<h1 style="text-align:center;">Fake News Detection AI</h1>""", unsafe_allow_html=True)
|
34 |
user_input = st.text_input("Article URL")
|
35 |
+
|
36 |
+
m = st.markdown("""
|
37 |
+
<style>
|
38 |
+
div.stButton > button:first-child {
|
39 |
+
background-color: rgb(204, 49, 49);
|
40 |
+
}
|
41 |
+
</style>""", unsafe_allow_html=True)
|
42 |
+
|
43 |
+
submit = st.button("test")
|
44 |
|
45 |
if submit:
|
46 |
last_time = time.time()
|