-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwarehouse1.html
66 lines (61 loc) · 1.82 KB
/
warehouse1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warehouse Management System</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 50px;
}
h2 {
color: #333;
}
.options-container {
display: flex;
flex-direction: column;
align-items: center;
}
.option {
background-color: #4caf50;
color: #fff;
padding: 15px;
margin: 10px 0;
border-radius: 5px;
cursor: pointer;
width: 80%;
text-align: center;
text-decoration: none;
font-size: 16px;
}
.option:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h2>Welcome to Warehouse Management System</h2>
<div class="options-container">
<a href="employee-dashboard.html" class="option">Employee Dashboard</a>
<a href="goods.html" class="option">Goods</a>
<a href="minimum-stock.html" class="option">Minimum Stock</a>
<a href="transaction.html" class="option">Transaction</a>
<a href="list-of-goods.html" class="option">List of Goods</a>
</div>
</div>
</body>
</html>