34853-vm/index.php
Flatlogic Bot 9660f06ca5 full
2025-10-12 11:03:22 +00:00

85 lines
4.6 KiB
PHP

<?php include 'header.php'; ?>
<section id="hero" class="hero text-center">
<div class="container">
<h1>Fast, Reliable Internet for Your Home</h1>
<p class="lead">Check if Australia Broadband Internet is available at your address.</p>
<div class="row justify-content-center">
<div class="col-md-8">
<form id="availability-form">
<div class="input-group input-group-lg">
<input type="text" id="address-input" class="form-control" placeholder="Enter your street address, suburb and postcode...">
<button class="btn btn-primary" type="submit">Check Now</button>
</div>
</form>
<div id="availability-result" class="mt-3" style="display: none;"></div>
</div>
</div>
</div>
</section>
<section id="plans" class="py-5 bg-light">
<div class="container">
<h2 class="text-center mb-5">Our Plans</h2>
<div class="row">
<?php
require_once __DIR__ . '/db/config.php';
try {
$pdo = db();
$stmt = $pdo->query("SELECT * FROM plans ORDER BY price_monthly");
$plans = $stmt->fetchAll();
} catch (PDOException $e) {
error_log($e->getMessage());
$plans = [];
}
if (empty($plans)):
?>
<div class="col-12 text-center">
<p>No plans available at the moment. Please check back later.</p>
</div>
<?php else: ?>
<?php foreach ($plans as $plan): ?>
<div class="col-md-4 mb-4">
<div class="card h-100 shadow-sm">
<div class="card-body d-flex flex-column">
<h5 class="card-title text-center"><?php echo htmlspecialchars($plan['name']); ?></h5>
<div class="text-center my-4">
<span class="display-4 fw-bold">$<?php echo htmlspecialchars(number_format($plan['price_monthly'], 2)); ?></span>
<span class="text-muted">/mo</span>
</div>
<ul class="list-unstyled mb-4 text-center">
<li class="mb-2"><i class="bi bi-speedometer2 me-2"></i>Up to <?php echo htmlspecialchars($plan['speed_mbps']); ?> Mbps</li>
<li class="mb-2"><i class="bi bi-card-text me-2"></i><?php echo htmlspecialchars($plan['description']); ?></li>
<li class="mb-2"><i class="bi bi-calendar-check me-2"></i><?php echo htmlspecialchars($plan['contract_months']); ?> months contract</li>
</ul>
<div class="mt-auto">
<a href="signup.php?plan_id=<?php echo $plan['id']; ?>" class="btn btn-primary w-100">Sign Up Now</a>
</div>
</div>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
</div>
</div>
</section>
<section id="about" class="bg-light py-5">
<div class="container">
<div class="row">
<div class="col-md-8 mx-auto text-center">
<h2>About Us</h2>
<p class="lead">Australia Broadband Internet is a leading provider of high-speed internet services. We are dedicated to delivering reliable and affordable connectivity to homes across Australia.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="py-5">
<div class="container text-center">
<h2>Contact Us</h2>
<p>Email: support@abinet.com.au</p>
<p>Phone: 1300 864 341</p>
</div>
</section>
<?php include 'footer.php'; ?>