105 lines
3.5 KiB
PHP
105 lines
3.5 KiB
PHP
<?php
|
|
session_start();
|
|
|
|
// Define a simple password. In a real application, use a more secure method.
|
|
define('ADMIN_PASSWORD', 'password');
|
|
|
|
// Check if the user is trying to log in
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['password'])) {
|
|
if ($_POST['password'] === ADMIN_PASSWORD) {
|
|
$_SESSION['is_admin'] = true;
|
|
header('Location: admin.php');
|
|
exit;
|
|
} else {
|
|
$error = 'Invalid password';
|
|
}
|
|
}
|
|
|
|
// If the user is not logged in, show the login form
|
|
if (!isset($_SESSION['is_admin']) || !$_SESSION['is_admin']) {
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Admin Login</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body data-bs-theme="dark">
|
|
<div class="container mt-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-4">
|
|
<h1 class="mb-4 text-center">Admin Login</h1>
|
|
<?php if (isset($error)): ?>
|
|
<div class="alert alert-danger"><?= $error ?></div>
|
|
<?php endif; ?>
|
|
<form method="POST">
|
|
<div class="mb-3">
|
|
<label for="password" class="form-label">Password</label>
|
|
<input type="password" class="form-control" id="password" name="password" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-100">Login</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<?php
|
|
exit;
|
|
}
|
|
|
|
require_once __DIR__ . '/db/config.php';
|
|
|
|
try {
|
|
$pdo = db();
|
|
$stmt = $pdo->query("SELECT * FROM contact_messages ORDER BY created_at DESC");
|
|
$messages = $stmt->fetchAll();
|
|
} catch (PDOException $e) {
|
|
die("DB ERROR: " . $e->getMessage());
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Admin - Contact Messages</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body data-bs-theme="dark">
|
|
<div class="container mt-5">
|
|
<h1 class="mb-4">Contact Form Submissions</h1>
|
|
<table class="table table-striped table-bordered">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Name</th>
|
|
<th>Email</th>
|
|
<th>Message</th>
|
|
<th>Submitted At</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (empty($messages)): ?>
|
|
<tr>
|
|
<td colspan="5" class="text-center">No messages yet.</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<?php foreach ($messages as $message): ?>
|
|
<tr>
|
|
<td><?= htmlspecialchars($message['id']) ?></td>
|
|
<td><?= htmlspecialchars($message['name']) ?></td>
|
|
<td><?= htmlspecialchars($message['email']) ?></td>
|
|
<td><?= htmlspecialchars($message['message']) ?></td>
|
|
<td><?= htmlspecialchars($message['created_at']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|