36945-vm/index.php
2025-12-18 17:27:42 +00:00

151 lines
8.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Mortgages</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=Inter:wght@400;700&family=Poppins:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand" href="/">Ontario Custom Mortgages</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#intro">Intro</a></li>
<li class="nav-item"><a class="nav-link" href="#mortgages">Mortgages</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#testimonials">Testimonials</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<header id="intro" class="hero text-center">
<div class="container">
<h1 class="display-4">Welcome to Ontario Custom Mortgages</h1>
<p class="lead">Your expert partner in navigating the mortgage landscape.</p>
<a href="#contact" class="btn btn-light btn-lg">Get In Touch</a>
</div>
</header>
<section id="mortgages" class="container">
<h2 class="text-center mb-4">Mortgages</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Second mortgages</h5>
<p class="card-text">Starting from as low as $10000 and 4.99%, I have solutions for you.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Reverse mortgages</h5>
<p class="card-text">A reverse mortgage helps Canadians aged 55+ enjoy a more comfortable, stress-free retirement by unlocking up to 55% of their homes value in tax-free cash, with no required monthly mortgage payments and a no negative equity guarantee.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">HELOCS</h5>
<p class="card-text">A Home Equity Line of Credit (HELOC) allows a homeowner to borrow against the equity in their home, providing flexible access to funds as needed. It can be used for expenses like renovations, debt consolidation, or emergencies, typically with lower interest rates than unsecured loans, and interest is only paid on the amount borrowed.</p>
</div>
</div>
</div>
</div>
</section>
<section id="about" class="bg-white">
<div class="container">
<h2 class="text-center mb-4">About Me</h2>
<div class="row">
<div class="col-md-4 text-center">
<img src="assets/pasted-20251218-155926-3e104bc6.jpg" alt="A photo of the mortgage agent" class="img-fluid rounded-circle mb-3">
</div>
<div class="col-md-8">
<p class="lead">I am a licensed mortgage agent in Ontario, I specialize in hard to place mortgages, refinancing and reverse mortgages, if you have any questions or your mortgage is coming up for renewal, contact me today</p><p class="lead">-Sean</p>
</div>
</div>
</div>
</section>
<section id="testimonials" class="container">
<h2 class="text-center mb-4">Testimonials</h2>
<div class="row">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"I have worked with Sean on multiple occasions and I highly recommend working with him. Sean has an amazing attitude, he is calm, reassuring and patient which is so important during stressful mortgage moments. On top of all that he clearly guides you through the process and comes up with the best solutions for your needs. Will continue working with Sean on all my mortgage needs."</p>
<footer class="blockquote-footer">Shealyn</footer>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body">
<p class="card-text">"Sean was great to work with! He lead me professionally through the paperwork and red tape associated with this. Would definitely recommend him to my friends and family looking for these services- top notch. Thanks Sean, Drew"</p>
<footer class="blockquote-footer">Drew</footer>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="bg-white">
<div class="container">
<h2 class="text-center mb-4">Contact Me</h2>
<div class="row justify-content-center">
<div class="col-md-8">
<?php if (isset($_SESSION['success'])): ?>
<div class="alert alert-success"><?php echo $_SESSION['success']; unset($_SESSION['success']); ?></div>
<?php endif; ?>
<?php if (isset($_SESSION['error'])): ?>
<div class="alert alert-danger"><?php echo $_SESSION['error']; unset($_SESSION['error']); ?></div>
<?php endif; ?>
<form action="contact.php" method="post">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="5" required></textarea>
</div>
<div style="display:none;">
<label for="honeypot">Leave this field blank</label>
<input type="text" name="honeypot" id="honeypot">
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<footer class="text-center py-4">
<p>&copy; <?php echo date("Y"); ?> Ontario Custom Mortgages. All Rights Reserved.</p>
</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>