-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.php
More file actions
47 lines (37 loc) · 1.22 KB
/
Copy pathreport.php
File metadata and controls
47 lines (37 loc) · 1.22 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
41
42
43
44
45
46
47
<?php
$page_title = 'Home Page';
require_once('includes/load.php');
if (!$session->isUserLoggedIn(true)) { redirect('index.php', false);}
?>
<?php include_once('layouts/header.php'); ?>
<style>
.wrapper{
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
}
.text-h{
text-align:center;
margin-bottom: 15px;
}
</style>
<div class="report-container wrapper">
<h3 class="text-h">Please Select a Report Type</h3>
<!-- category report -->
<a href="category_report.php" class="option">
<img src="libs/logos/table-logo/category.png" alt="inventory-logo">
<span class="reportHeading">Category Report</span>
</a>
<!-- inactive report -->
<a href="sales_report.php" class="option">
<img src="libs/logos/table-logo/inactive.png" alt="inventory-logo">
<span class="reportHeading">Inactive Report</span>
</a>
<!-- Overall Report -->
<a href="overall_report.php" class="option">
<img src="libs/logos/table-logo/dashboard.png" alt="inventory-logo">
<span class="reportHeading">Overall Report</span>
</a>
</div>
<?php include_once('layouts/footer.php'); ?>