File size: 509 Bytes
7112e57 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
def mail_page():
st.title("Request Sent Successfully")
st.write("Thank you for your tool request! Your request has been sent.")
st.write("Here are the details of your request:")
# Retrieve the name and tool from session state
name = st.session_state.get('name')
tool = st.session_state.get('tool')
if name and tool:
st.write(f"**Name:** {name}")
st.write(f"**Tool:** {tool}")
else:
st.write("No request details found.") |