Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

49 lines
872 B

  1. <!DOCTYPE html>
  2. <head>
  3. <meta charset='utf-8'>
  4. <meta name="viewport"
  5. content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. </head>
  7. <body id="pdf-doc">
  8. <div class="disclaimer">
  9. <p>Actual costs may vary from estimates after approval.
  10. Get an official quote before choosing a loan.</p>
  11. </div>
  12. {{template "header" .}}
  13. {{template "comparison" .}}
  14. <div class="break"></div>
  15. <div class="disclaimer">
  16. <p>Actual costs may vary from estimates after approval.
  17. Get an official quote before choosing a loan.</p>
  18. </div>
  19. {{template "header" .}}
  20. {{template "summary" .}}
  21. </body>
  22. <style>
  23. #pdf-doc {
  24. margin: 0px 30px;
  25. }
  26. .disclaimer {
  27. font-weight: bold;
  28. border-bottom: 1px solid lightgrey;
  29. margin-bottom: 20px;
  30. color: var(--text);
  31. text-align: center;
  32. }
  33. .disclaimer p {
  34. margin: 5px 0;
  35. }
  36. div.break {
  37. page-break-after: always;
  38. }
  39. </style>