12 lines
595 B
PHP
12 lines
595 B
PHP
<?php require_once __DIR__ . '/includes/header.php'; ?>
|
|
|
|
<div class="px-4 py-5 my-5 text-center">
|
|
<h1 class="display-5 fw-bold">Welcome, <?php echo htmlspecialchars($_SESSION['user_name']); ?>!</h1>
|
|
<div class="col-lg-6 mx-auto">
|
|
<p class="lead mb-4">This is your central dashboard. From here, you can manage all aspects of your petrol bunk operations. Use the navigation bar above to get started.</p>
|
|
<p>Your role is: <strong><?php echo htmlspecialchars($_SESSION['user_role']); ?></strong></p>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|