84 lines
3.7 KiB
PHP
84 lines
3.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>E-Waste Reclaimer</title>
|
|
<meta name="description" content="Built with Flatlogic Generator">
|
|
<meta name="keywords" content="e-waste, recycling, sustainability, electronics disposal, green technology, responsible consumption, eco-friendly, circular economy, Built with Flatlogic Generator">
|
|
<meta property="og:title" content="E-Waste Reclaimer">
|
|
<meta property="og:description" content="Built with Flatlogic Generator">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body class="bg-light">
|
|
|
|
<header class="bg-white shadow-sm">
|
|
<div class="container d-flex justify-content-between align-items-center py-3">
|
|
<a href="/" class="h4 text-success text-decoration-none">
|
|
<i class="fas fa-recycle me-2"></i>E-Waste Reclaimer
|
|
</a>
|
|
<div>
|
|
<a href="#" class="btn btn-outline-secondary me-2">Login</a>
|
|
<a href="#" class="btn btn-success">Register</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container my-5">
|
|
<div class="text-center mb-5">
|
|
<h1 class="display-4">Find a Recycling Center</h1>
|
|
<p class="lead">Help the planet by responsibly disposing of your electronic waste.</p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<?php
|
|
$centers = [
|
|
[
|
|
'name' => 'GreenTech Recyclers',
|
|
'address' => '123 Eco Lane, Green City, 12345',
|
|
'contact' => 'contact@greentech.com'
|
|
],
|
|
[
|
|
'name' => 'Circuit Savers',
|
|
'address' => '456 Recycle Ave, Tech Town, 67890',
|
|
'contact' => 'info@circuitsavers.com'
|
|
],
|
|
[
|
|
'name' => 'Eco-Warriors',
|
|
'address' => '789 Planet Blvd, Nature Village, 11223',
|
|
'contact' => 'support@ecowarriors.org'
|
|
]
|
|
];
|
|
|
|
foreach ($centers as $center): ?>
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card h-100 shadow-sm border-0">
|
|
<div class="card-body">
|
|
<h5 class="card-title text-success"><?php echo htmlspecialchars($center['name']); ?></h5>
|
|
<p class="card-text">
|
|
<i class="fas fa-map-marker-alt me-2 text-secondary"></i><?php echo htmlspecialchars($center['address']); ?>
|
|
</p>
|
|
<p class="card-text">
|
|
<i class="fas fa-envelope me-2 text-secondary"></i><?php echo htmlspecialchars($center['contact']); ?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="bg-white text-center py-4 mt-5">
|
|
<div class="container">
|
|
<p class="mb-0">© <?php echo date("Y"); ?> E-Waste Reclaimer. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|