Is it possible to not rerun the entire streamlit script when the user enters their email.
st.sidebar.write(st.session_state)
if st.session_state.valid_email==False:
with st.expander(“Provide your email for early access to updates and other alpha!”, expanded=True):
with st.form (“emailform”):
signupemail = st.text_input(‘Please enter your e-mail address’, value=None)
submitted = st.form_submit_button(“Submit”)
if submitted: #This calls the API for Mailerlite
What is the strategy for doing this?
thanks!