Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudhendra committed Oct 16, 2024
1 parent f915294 commit f95f6f9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions medapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,31 @@ def main():

st.write("---")

# Add the feedback button at the end of the main tab
st.markdown("---")
st.markdown(
"""
<div style="display: flex; justify-content: center; margin-top: 30px;">
<a href="https://forms.gle/ht6MH14t8kFqrrni6" target="_blank">
<button style="
font-size: 18px;
padding: 12px 24px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: all 0.3s ease;
">
🎁 Leave Feedback for Perks! 🎁
</button>
</a>
</div>
""",
unsafe_allow_html=True
)

with tab2:
st.header("Disclosures")
with open("disclosures.txt", "r") as f:
Expand Down

0 comments on commit f95f6f9

Please sign in to comment.