-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
40 lines (35 loc) · 1.38 KB
/
admin.php
File metadata and controls
40 lines (35 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
include "inc/header.php";
include_once "lib/Session.php"; // Include Session class
Session::init(); // Initialize session
Session::checkSession(); // Check if the user is logged in
?>
<?php include "inc/sidenav.php";?>
<div class="content" id="content">
<!-- Content will be loaded here -->
</div>
<div class="main-content">
<h2>Good Afternoon</h2>
<h4 class="user-title"><?php echo Session::get('adminName'); ?></h4>
<div class="overview-wrapper">
<h4 class="section-title" >Overview</h4>
<div class="total-ov">
<div class="total-ov-item total-sales">
<span class="center-icon"><i class="fas fa-dollar-sign"></i></span>
<h4 class="ov-title">Total Sales</h4>
</div>
<div class="total-ov-item total-orders">
<span class="center-icon"><i class="fas fa-wallet"></i></span>
<h4 class="ov-title">Total Orders</h4>
</div>
<div class="total-ov-item total-customers">
<span class="center-icon"><i class="fas fa-users"></i></span>
<h4 class="ov-title">Total Customers</h4>
</div>
<div class="total-ov-item total-menu-items">
<span class="center-icon"><i class="fas fa-sticky-note"></i></span>
<h4 class="ov-title">Total Menu Items</h4>
</div>
</div>
</div>
<?php include "inc/footer.php";?>