-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
134 lines (117 loc) · 2.93 KB
/
report.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warehouse Management</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ecf0f5;
background-image: url('../images/con7.jpg');
background-size: cover;
background-position: center;
height: 100vh; /* Ensures full viewport height */
}
header {
background-color: #423c89;
color: #ffffff;
padding: 15px 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.logo {
font-size: 1.5em;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.nav-links li {
margin-right: 20px;
}
.nav-links a {
text-decoration: none;
color: #ffffff;
}
main {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
text-align: center;
}
.button-list {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.button-item {
background-color: #a39210;
color: #ffffff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.button-item:hover {
background-color: #423c89;
}
footer {
background-color: #423c89;
color: white;
padding: 20px;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
<header>
<nav>
<div class="logo">Warehouse Inventory System</div>
<ul class="nav-links">
<li><a href="../dashboard.html">Home</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../contactus.html">Contact</a></li>
<li><a href="../add_product.html">Product</a></li>
<li><a href="../view_product.html">Reports</a></li>
</ul>
</nav>
</header>
<main>
<div class="button-list">
<div class="button-item" onclick="location.href='inventory_report.php';">
<h2>Inventory Report</h2>
</div>
<div class="button-item" onclick="location.href='stock_aging_report.php';">
<h2> Stock Aging Report</h2>
</div>
<div class="button-item" onclick="location.href='stock_movement_report.html';">
<h2>Stock Movement Report</h2>
</div>
<div class="button-item" onclick="location.href='stock_value_report.php';">
<h2>Stock Value Report</h2>
</div>
</div>
</main>
<footer>
<p>Contact us at: your.email@example.com</p>
<p>© 2024 ABC Inventory System. All rights reserved.</p>
</footer>
</body>
</html>
</a>