Alimubariz124 commited on
Commit
b4dd2a3
·
verified ·
1 Parent(s): 6c9ecdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -279,12 +279,12 @@ if st.button('Submit'):
279
  # Provide the website link
280
  website_link = "https://www.bing.com"
281
 
282
- # Create a button to open the link
283
- if st.button('Open Survey Interview Link'):
284
- #st.markdown(f'<meta http-equiv="refresh" content="0; url={website_link}">', unsafe_allow_html=True)
285
- st.markdown(f'<a href="{website_link}" target="_blank">Please click here to proceed with interview Link</a>', unsafe_allow_html=True)
286
  else:
287
  # Thank you message for participants not selected
288
  st.write("Thank you for your participation.")
289
 
290
 
 
 
279
  # Provide the website link
280
  website_link = "https://www.bing.com"
281
 
282
+ # Display the link in a bold and attractive format
283
+ st.markdown(f'<p style="font-size:20px; font-weight:bold;">Please click the link below to proceed with the interview:</p>', unsafe_allow_html=True)
284
+ st.markdown(f'<a href="{website_link}" target="_blank" style="font-size:20px; font-weight:bold; color:#007bff;">{website_link}</a>', unsafe_allow_html=True)
 
285
  else:
286
  # Thank you message for participants not selected
287
  st.write("Thank you for your participation.")
288
 
289
 
290
+