Rifky commited on
Commit
804ff49
·
1 Parent(s): c610876

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
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
- submit = st.button("submit")
 
 
 
 
 
 
 
 
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()