36526-vm/index.php
2025-12-01 07:41:47 +00:00

25 lines
857 B
PHP

<?php
$page_title = 'Admin Dashboard';
include __DIR__ . '/includes/header.php';
?>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark mb-4">
<div class="container">
<a class="navbar-brand" href="/">Eventix Dashboard</a>
</div>
</nav>
<main class="container">
<div class="p-5 mb-4 bg-light rounded-3">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">Welcome to Eventix</h1>
<p class="col-md-8 fs-4">The application scaffolding is complete. You can now run the database migration to set up the required tables.</p>
<p>This page will become the main admin dashboard for managing events and guests.</p>
<a href="/db/migrate.php" class="btn btn-primary btn-lg" target="_blank">Run Database Migration</a>
</div>
</div>
</main>
<?php
include __DIR__ . '/includes/footer.php';
?>