This commit is contained in:
Flatlogic Bot 2025-12-15 09:37:52 +00:00
parent 92cf1aad2f
commit 7100e72a1d
3 changed files with 218 additions and 28 deletions

156
admin_restaurants.php Normal file
View File

@ -0,0 +1,156 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin - Manage Restaurants</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<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;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #F8F9FA;
color: #212529;
}
.btn-primary {
background-color: #FF6347;
border-color: #FF6347;
}
.btn-primary:hover {
background-color: #E5533D;
border-color: #E5533D;
}
.table {
background-color: #FFFFFF;
border-radius: 0.5rem;
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}
.card {
border-radius: 0.5rem;
}
.modal-content {
border-radius: 0.5rem;
}
</style>
</head>
<body>
<div class="container mt-5">
<div class="d-flex justify-content-between align-items-center mb-4">
<h1>Manage Restaurants</h1>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#addRestaurantModal">
<i class="bi bi-plus-lg"></i> Add New Restaurant
</button>
</div>
<div class="card">
<div class="card-body">
<table class="table table-hover">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Address</th>
<th>Phone</th>
<th>Email</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php
require_once 'db/config.php';
try {
$pdo = db();
$stmt = $pdo->query("SELECT * FROM restaurants ORDER BY id DESC");
$restaurants = $stmt->fetchAll();
foreach ($restaurants as $restaurant) {
echo "<tr>";
echo "<td>" . htmlspecialchars($restaurant['id']) . "</td>";
echo "<td>" . htmlspecialchars($restaurant['name']) . "</td>";
echo "<td>" . htmlspecialchars($restaurant['address']) . "</td>";
echo "<td>" . htmlspecialchars($restaurant['phone']) . "</td>";
echo "<td>" . htmlspecialchars($restaurant['email']) . "</td>";
echo '<td>
<button class="btn btn-sm btn-secondary"><i class="bi bi-pencil"></i></button>
<button class="btn btn-sm btn-danger"><i class="bi bi-trash"></i></button>
</td>';
echo "</tr>";
}
} catch (PDOException $e) {
echo "<tr><td colspan='6'>Error: " . $e->getMessage() . "</td></tr>";
}
?>
</tbody>
</table>
</div>
</div>
</div>
<!-- Add Restaurant Modal -->
<div class="modal fade" id="addRestaurantModal" tabindex="-1" aria-labelledby="addRestaurantModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="addRestaurantModalLabel">Add New Restaurant</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form id="addRestaurantForm">
<div class="mb-3">
<label for="name" class="form-label">Restaurant Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="address" class="form-label">Address</label>
<textarea class="form-control" id="address" name="address" rows="3" required></textarea>
</div>
<div class="mb-3">
<label for="phone" class="form-label">Phone Number</label>
<input type="text" class="form-control" id="phone" name="phone" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Contact Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<button type="submit" class="btn btn-primary">Save Restaurant</button>
</form>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script>
document.getElementById('addRestaurantForm').addEventListener('submit', function(e) {
e.preventDefault();
const formData = new FormData(this);
const data = Object.fromEntries(formData.entries());
fetch('api/restaurants.php?action=create', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
})
.then(response => response.json())
.then(result => {
if (result.success) {
location.reload();
} else {
alert('Error: ' + result.error);
}
})
.catch(error => {
console.error('Error:', error);
alert('An unexpected error occurred.');
});
});
</script>
</body>
</html>

40
api/restaurants.php Normal file
View File

@ -0,0 +1,40 @@
<?php
require_once '../db/config.php';
header('Content-Type: application/json');
$action = $_GET['action'] ?? '';
switch ($action) {
case 'create':
handle_create();
break;
default:
echo json_encode(['success' => false, 'error' => 'Invalid action']);
break;
}
function handle_create() {
$data = json_decode(file_get_contents('php://input'), true);
if (empty($data['name']) || empty($data['address']) || empty($data['phone']) || empty($data['email'])) {
echo json_encode(['success' => false, 'error' => 'All fields are required.']);
return;
}
try {
$pdo = db();
$sql = "INSERT INTO restaurants (name, address, phone, email) VALUES (:name, :address, :phone, :email)";
$stmt = $pdo->prepare($sql);
$stmt->execute([
':name' => $data['name'],
':address' => $data['address'],
':phone' => $data['phone'],
':email' => $data['email'],
]);
echo json_encode(['success' => true]);
} catch (PDOException $e) {
echo json_encode(['success' => false, 'error' => 'Database error: ' . $e->getMessage()]);
}
}

View File

@ -83,30 +83,9 @@ $projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.loader {
margin: 1.25rem auto 1.25rem;
width: 48px;
height: 48px;
border: 3px solid rgba(255, 255, 255, 0.25);
border-top-color: #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hint {
opacity: 0.9;
}
.sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap; border: 0;
}
h1 {
font-size: 3rem;
font-weight: 700;
@ -129,18 +108,33 @@ $projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
font-size: 0.8rem;
opacity: 0.7;
}
.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
background-color: var(--bg-color-end);
color: var(--text-color);
text-decoration: none;
border-radius: 8px;
transition: background-color 0.3s;
border: none;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
}
.btn:hover {
background-color: #1e5fa5;
}
</style>
</head>
<body>
<main>
<div class="card">
<h1>Analyzing your requirements and generating your website…</h1>
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
<span class="sr-only">Loading…</span>
</div>
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
<p class="hint">This page will update automatically as the plan is implemented.</p>
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
<h1>Welcome to Your New Application!</h1>
<p class="hint">This is the starting point of your project.</p>
<p>
<a href="admin_restaurants.php" class="btn">Manage Restaurants</a>
</p>
<p style="margin-top: 2rem;">Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
</div>
</main>
<footer>