-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmortgage-calculator.html
60 lines (58 loc) · 3.52 KB
/
mortgage-calculator.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Mortgage Calculator</title>
<link rel="stylesheet" type="text/css" href="mortgage-calculator.css">
<script src="mortgage-calculator.js" type="text/javascript"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
<a href="https://www.securityhomemortgage.com/"><img src="Security-Home-Mortgage.jpeg" alt="" width="245" height="50"></a>
<h1>Mortgage Calculator</h1>
<div class ="input">
<h2>Current Situation</h2>
<form onsubmit="calculateSavings();return false;">
Term:<br><input type="number" id="term" min="0" max="500" step="12"><br>
Principal & Interest:<br> <input type="number" id="p&i" min="0" max="10000" step="50"><br>
Solar Payment:<br> <input type="number" id="extra-payment" min="0" max="10000" step="50"><br>
<h2>Projected Situation</h2>
Home Value: <br><input type="number" id="home-value" min="0" max="1000000" step="5000"><br>
Interest Rate: <br><input type="number" id="interest-rate" min="0" step=".1"><br>
1st Mortgage Payoff:<br> <input type="number" id="1st-mortgage-payoff" min="0" max="1000000" step="5000"><br>
Solar Payoff: <br><input type="number" id="rolled-payoff" min="0" max="1000000" step="1000"><br>
Closing Costs: <br><input type="number" id="closing-costs" min="0" max="20000" step="1000"><br>
<input type="button" value="Calculate Savings" onClick="calculateSavings();">
</form>
</div>
<div class="right">
<div class="border">
<h3>Current:</h3>
<p id="ltv">Loan-to-Value:</p>
<p id="monthly-payment">Monthly Payment:</p>
</div>
<div class="border new">
<h3>Proposed New:</h3>
<p id="newltv">New Loan-to-Value:</p>
<p id="new-payment" style="color:green;">New Payment:</p>
</div>
<div class="border right">
<h2>Savings</h2>
<p id="monthly-savings" style="color:green;">Monthly Savings:</p>
<p id="yearly-savings">Yearly Savings:</p>
<p id="5-year-savings">5 Year:</p>
<p id="10-year-savings">10 Year:</p>
</div>
</div>
</div>
<div id="footer">
<div id="contact-holder">
<p class="contact-info">Luke Sorensen<br>Security Home Mortgage<br>NMLS #: 1300684</p>
<p class="contact-info">576 S State St<br>Orem, Ut 84058<br>(801) 836-5850<br>www.loanswithluke.com</p>
<button id="facebook-button" class="bottom-links" onclick="window.location.href = 'https://www.facebook.com/profile.php?id=100009919925614';">f</button>
<img id="equal-house" src="Fair_Equal_Housing_Logo.jpg" width="80" height="80">
</div>
<p id="final-comments">The Highest Compliment I can Receive is a Referral From a Friend.<br>Download my free mortgage calculator app. In your smart phone, click on this link: <a href="http://mtgpro.co/xown9">http://mtgpro.co/xown9</a></p>
</div>
</body>
</html>