-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
19 lines (17 loc) · 686 Bytes
/
home.php
File metadata and controls
19 lines (17 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
// home.php
include 'header.php';
include 'sidebar.php';
?>
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-2xl font-semibold text-gray-700">Welcome <?php echo htmlspecialchars($_SESSION['name']); ?></h3>
<p class="text-gray-500 mt-2">This is the central hub for managing your diamond inventory and <?php echo (isset($_SESSION['role']) && $_SESSION['role'] === 'customer') ? 'customer information.' : 'client information.'; ?>
</p>
<div class="flex justify-center mt-10">
<!-- You can place a logo or an illustrative image here -->
<i class="far fa-gem text-9xl text-gray-300"></i>
</div>
</div>
<?php
include 'footer.php';
?>