Spaces:
Build error
Build error
Update app.py
Browse files
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 |
-
#
|
| 283 |
-
|
| 284 |
-
|
| 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 |
+
|