eagle0504 commited on
Commit
551abb7
Β·
verified Β·
1 Parent(s): 2d3ab4d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -39,7 +39,14 @@ if st.session_state.session_id:
39
 
40
  # Display the paid content on the main page if payment is successful
41
  if st.session_state.payment_checked:
42
- st.write("Here's the paid content. πŸ†")
 
 
 
 
 
 
 
43
  if st.button("Click for More Info"):
44
  st.write("Here is the additional information for paid users! πŸ“„")
45
  else:
 
39
 
40
  # Display the paid content on the main page if payment is successful
41
  if st.session_state.payment_checked:
42
+ with st.sidebar:
43
+ # Embed Airtable after the download button
44
+ st.markdown("### Any questions or feedback?")
45
+ st.markdown("""
46
+ <iframe class="airtable-embed" src="https://airtable.com/embed/appSl7NmyGNWEHtjs/shrDWlWLV1yVZpW7V" frameborder="0" onmousewheel="" width="100%" height="533" style="background: transparent; border: 1px solid #ccc;"></iframe>
47
+ """, unsafe_allow_html=True)
48
+
49
+ st.markdown("## Here's the paid content. πŸ†")
50
  if st.button("Click for More Info"):
51
  st.write("Here is the additional information for paid users! πŸ“„")
52
  else: