Spaces:
Sleeping
Sleeping
Michael S. R.
commited on
Update pages.py
Browse files
pages.py
CHANGED
@@ -7,6 +7,7 @@ def home():
|
|
7 |
st.write("Welcome to the Prospectus Lens! Upload the PDF of the prospectus below!")
|
8 |
uploaded_file = st.file_uploader("Upload your Prospectus File", accept_multiple_files=False, type=["pdf"])
|
9 |
st.session_state["uploaded_file"] = uploaded_file
|
|
|
10 |
|
11 |
def cover():
|
12 |
find_cover(uploaded_file=st.session_state.get("uploaded_file"))
|
|
|
7 |
st.write("Welcome to the Prospectus Lens! Upload the PDF of the prospectus below!")
|
8 |
uploaded_file = st.file_uploader("Upload your Prospectus File", accept_multiple_files=False, type=["pdf"])
|
9 |
st.session_state["uploaded_file"] = uploaded_file
|
10 |
+
st.caption("Made with ❤️ by @michael_sr24")
|
11 |
|
12 |
def cover():
|
13 |
find_cover(uploaded_file=st.session_state.get("uploaded_file"))
|