Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.40 KB | None | 0 0
  1. <!doctype html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>MIP</title>
  6.     <style>
  7.         @page {
  8.             size: A4;
  9.             margin: 0;
  10.         }
  11.     </style>
  12. </head>
  13. <body style="font-family:Verdana, Geneva, sans-serif; font-size:16px; color:#00154d;margin: 0">
  14.  
  15. <div style="margin-left:auto; margin-right:auto; padding:32px; background-color:#e1dbd5;">
  16.  
  17.     <div style="height:900px; padding:32px; background-color:#FFF;">
  18.  
  19.         <p style="margin:0; text-align:center; font-size:36px; font-weight:600;">Mortgage in Principle Certificate<br><span style="font-size:32px; font-weight:400;">for</span></p>
  20.  
  21.         <p style="margin-top:8px; margin-bottom:16px; text-align:center; color:#eb601d; font-size:32px;" th:text="${mip.primaryApplicantProcessorDto.title} + ' ' + ${mip.primaryApplicantProcessorDto.surname} + (${mip.jointApplicantProcessorDto} ? ' and ' + ${mip.jointApplicantProcessorDto.title} + ' ' + ${mip.jointApplicantProcessorDto.surname} : '')">paTitle paSurname and jaTitle jaSurname</p>
  22.  
  23.         <div style="text-align:center;">
  24.             <p th:text="'This Certificate is based on information ' + ${mip.primaryApplicantProcessorDto.title} + ' ' + ${mip.primaryApplicantProcessorDto.surname} + (${mip.jointApplicantProcessorDto} ? ' and ' + ${mip.jointApplicantProcessorDto.title} + ' ' + ${mip.jointApplicantProcessorDto.surname} + ' have' : ' has') + ' supplied and is an indicative value of what you may be able to borrow, subject to confirmation of status and valuation'">This Certificate is based on information paTitle paSurname and jaTitle jaSurname have supplied and is an indicative value of what you may be able to borrow, subject to confirmation of status and valuation</p>
  25.         </div>
  26.  
  27.         <div style="clear:both;">
  28.             <p style="display:inline-block; width:62%; padding-left:12px; padding-right:12px; line-height:48px; background-color:#e1dbd5;" th:text="'Applicant Name: ' + ${mip.primaryApplicantProcessorDto.title} + ' ' + ${mip.primaryApplicantProcessorDto.surname}">Applicant name: paTitle paName</p>
  29.             <p style="display:inline-block; width: 37%; margin-left: 90px; padding-left:12px; padding-right:12px; line-height:48px; background-color:#e1dbd5;" th:text="'Date: ' + ${#temporals.format(mip.created, 'dd/MM/yyyy')}">Date: createdDate</p>
  30.         </div>
  31.  
  32.         <div class="row" style="background-color:#e1dbd5;">
  33.             <div class="column" style="display:inline-block; width:74px; vertical-align:top;">
  34.                 <p style="text-align:right;">Address:</p>
  35.             </div>
  36.             <div class="column" style="display:inline-block; width:480px;">
  37.                 <p th:text="${mip.primaryApplicantProcessorDto.address}">address</p>
  38.             </div>
  39.         </div>
  40.  
  41.         <div style="margin-top:24px; padding:0; text-align:center; border:7px solid #eb601d;">
  42.             <p style="margin:12px; font-size:28px;">Based on the details you gave us,<br>you can borrow approximately:</p>
  43.             <p style="margin:16px auto; font-size:65px; color:#a8a8a8;" th:text="'&pound;' + ${#numbers.formatDecimal(mip.creditAmount, 0, 'COMMA', 2, 'POINT')}">&pound; maxBorrowAmount</p>
  44.         </div>
  45.  
  46.         <div style="padding:12px 32px; text-align:center;">
  47.             <p>Please note that this does not represent a formal mortgage offer or a guarantee of a mortgage advance
  48.                 from a lender as you have not yet been credit checked.</p>
  49.             <p>Once your documents have been returned and we know your exact borrowing requirements, our advisers will
  50.                 get you mortgage ready and place you with the right lender to meet your specific circumstances.</p>
  51.         </div>
  52.  
  53.         <div>
  54.             <p style="display:inline-block; width:65%; padding-left:12px; padding-right:12px;">Signed ............................................................</p>
  55.             <p style="display:inline-block; width:27%; padding-left:12px; padding-right:12px;">Date ........................</p>
  56.         </div>
  57.  
  58.     </div>
  59.  
  60.     <div style="max-height:94px; margin-left:-32px; border-left:32px solid #eb601d;">
  61.         <img th:src="${imageHost} + '/MABfooter.png'" src="http://k8s.freedom-finance.cloud-email-templates.s3-website-eu-west-1.amazonaws.com/MABfooter.png" alt="MAB footer" style="max-width:100%; height: 94px">
  62.     </div>
  63.  
  64. </div>
  65.  
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement