survey.html 1.2 KB

12345678910111213141516171819202122232425262728
  1. <!-- Survey -->
  2. <div class="col-md-4">
  3. <div class="text-center my-5">
  4. <h4>Looking for something more?</h4>
  5. <p class="lead">Tell us what to build next!</p>
  6. <button type="button" class="btn btn-primary btn-xl shadow" data-toggle="modal" data-target="#surveyModal">
  7. Send Feedback
  8. </button>
  9. </div>
  10. </div>
  11. <!-- Survey Modal -->
  12. <div class="modal fade" id="surveyModal" tabindex="-1" role="dialog" aria-labelledby="surveyModalLabel" aria-hidden="true">
  13. <div class="modal-dialog modal-lg" role="document">
  14. <div class="modal-content">
  15. <div class="modal-header">
  16. <h5 class="modal-title" id="surveyModalLabel">What should we build next?</h5>
  17. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  18. <span aria-hidden="true">&times;</span>
  19. </button>
  20. </div>
  21. <div class="modal-body">
  22. <iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdyOpinSE6mUmXF72e6NRzgI7V47lRPE1z9KXFnoSMxPwTSww/viewform?embedded=true" width="100%" height="1000" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
  23. </div>
  24. </div>
  25. </div>
  26. </div>