Yara Kyrychenko commited on
Commit
9faf1b4
·
1 Parent(s): 479ce85
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -125,6 +125,12 @@ with st.sidebar:
125
  if st.session_state.gotit == False or st.session_state.submitted == False:
126
  st.session_state.gotit = st.button("Let's start!", key=None, help=None, use_container_width=True)
127
 
 
 
 
 
 
 
128
 
129
  @st.dialog('Form', width="large")
130
  def form():
 
125
  if st.session_state.gotit == False or st.session_state.submitted == False:
126
  st.session_state.gotit = st.button("Let's start!", key=None, help=None, use_container_width=True)
127
 
128
+ search = ""
129
+ if search == "":
130
+ search = st.text_input("Enter a link")
131
+ if search != "":
132
+ components.iframe(f"{search}",height=1000,scrolling=True)
133
+
134
 
135
  @st.dialog('Form', width="large")
136
  def form():