From 3bfeecd3aca33714baf0232e35dde7e25b16c0fa Mon Sep 17 00:00:00 2001 From: abrarsharif66 Date: Sat, 21 Oct 2023 22:44:40 +0530 Subject: [PATCH] Added cool bg and removed streamlit footer --- app.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app.py b/app.py index dd4da56..8999541 100644 --- a/app.py +++ b/app.py @@ -68,6 +68,30 @@ def generate_pdf(name, reg_num, ass_name, text_in, file): # Title st.title('PDF Maker') +#hides the "made with streamlitt footer" +hide_st_style= """ +""" + +#chaninging background +pg_bg= """ +""" +st.markdown(pg_bg,unsafe_allow_html=True) +st.markdown(hide_st_style, unsafe_allow_html=True) + + # Inputs user_name = st.text_input('Enter your name') reg_num = st.text_input('Enter your registration number')