jas-pillay commited on
Commit
3c0927f
·
verified ·
1 Parent(s): f106a2b

feedback form

Browse files
Files changed (1) hide show
  1. app.py +22 -9
app.py CHANGED
@@ -519,7 +519,7 @@ Borrowing from banks, insurance companies, and other governments and earning div
519
 
520
  <hr>
521
 
522
- <h2 style='color: #571010;'>💡 Alpha Finance Projects to Build Your Résumé</h2>
523
  <ul>
524
  <li><strong>BlackRock Future Advisor Summer Intern (Wealth Advisory)</strong><br>
525
  <em>Location:</em> NYC, Boston, San Francisco<br>
@@ -553,15 +553,28 @@ Borrowing from banks, insurance companies, and other governments and earning div
553
  """)
554
 
555
  with gr.TabItem("Contact Us/ Feedback Form"):
556
- gr.Image(value="header.png", show_label=False)
557
- gr.HTML("<h1 style='color: #571010;'>Contact Us🔥</h1>")
558
- gr.Markdown("""
559
- <ul>
560
- <li>📊 yap </li>
 
 
 
 
 
 
 
 
 
 
 
 
561
 
562
- </ul>
563
- <p>FinBro tip: If it’s not teaching you, showcasing you, or helping others — drop it.</p>
564
- """)
 
565
 
566
  demo.launch()
567
 
 
519
 
520
  <hr>
521
 
522
+ <h2 style='color: #571010;'>💡 Internships worth Investing In</h2>
523
  <ul>
524
  <li><strong>BlackRock Future Advisor Summer Intern (Wealth Advisory)</strong><br>
525
  <em>Location:</em> NYC, Boston, San Francisco<br>
 
553
  """)
554
 
555
  with gr.TabItem("Contact Us/ Feedback Form"):
556
+ gr.Markdown("## 📝 Feedback")
557
+ gr.Markdown("Let us know what you think about FinBro!")
558
+
559
+ with gr.Row():
560
+ rating = gr.Radio(["⭐", "⭐⭐", "⭐⭐⭐", "⭐⭐⭐⭐", "⭐⭐⭐⭐⭐"], label="How do you rate FinBro?")
561
+ comment = gr.Textbox(label="Comments", placeholder="Drop any suggestions, roasts, or praise here", lines=3)
562
+ submit_btn = gr.Button("Submit")
563
+
564
+ #thanks = gr.Textbox(visible=False)
565
+
566
+ #submit_btn.click(fn=handle_feedback, inputs=[rating, comment], outputs=thanks)
567
+
568
+ # gr.Image(value="header.png", show_label=False)
569
+ # gr.HTML("<h1 style='color: #571010;'>Contact Us🔥</h1>")
570
+ # gr.Markdown("""
571
+ # <ul>
572
+ # <li>📊 yap </li>
573
 
574
+ # </ul>
575
+ # <p>FinBro tip: If it’s not teaching you, showcasing you, or helping others — drop it.</p>
576
+ # """)
577
+
578
 
579
  demo.launch()
580