14 lines
600 B
PHP
14 lines
600 B
PHP
<?php include 'header.php'; ?>
|
|
|
|
<h1>Welcome, <?php echo htmlspecialchars($_SESSION['user_name']); ?>!</h1>
|
|
|
|
<p>This is your restaurant dashboard. From here you can manage your restaurant's menu, view orders, and update your restaurant's information.</p>
|
|
|
|
<div class="list-group">
|
|
<a href="menu.php" class="list-group-item list-group-item-action">Manage Menu</a>
|
|
<a href="orders.php" class="list-group-item list-group-item-action">View Orders</a>
|
|
<a href="edit_restaurant.php" class="list-group-item list-group-item-action">Edit Restaurant Information</a>
|
|
</div>
|
|
|
|
<?php include 'footer.php'; ?>
|