67 lines
3.0 KiB
PHP
67 lines
3.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Interactive Loan Calculator</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
|
|
|
|
<main class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="calculator-card">
|
|
<form id="loan-calculator-form">
|
|
<div class="mb-3">
|
|
<label for="loanAmount" class="form-label">Loan Amount ($)</label>
|
|
<input type="number" class="form-control" id="loanAmount" placeholder="e.g., 250000" value="250000">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="interestRate" class="form-label">Annual Interest Rate (%)</label>
|
|
<input type="number" class="form-control" id="interestRate" placeholder="e.g., 5.5" step="0.01" value="5.5">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="loanTerm" class="form-label">Loan Term (Years)</label>
|
|
<input type="number" class="form-control" id="loanTerm" placeholder="e.g., 30" value="30">
|
|
</div>
|
|
</form>
|
|
<div class="mt-4">
|
|
<div class="row">
|
|
<div class="col-md-6 mb-3 mb-md-0">
|
|
<div class="result">
|
|
<h3>Monthly Payment</h3>
|
|
<p id="monthlyPayment">$0.00</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="result">
|
|
<h3>Total Interest Paid</h3>
|
|
<p id="totalInterest">$0.00</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</main>
|
|
|
|
<footer class="text-center">
|
|
<div class="container">
|
|
<p class="text-muted">© <?php echo date("Y"); ?> Interactive Calculators. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|