-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd.html
94 lines (83 loc) · 2.22 KB
/
add.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Success Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #a1d2f3;
color: #151010;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
height: 100vh;
}
header {
background-color: #090349;
width: 100%;
position: inherit;
padding: 20px 0;
text-align: center;
}
.logo {
display: flex;
align-items: center;
justify-content: center;
}
.logo img {
width: 60px;
height: 60px;
margin-right: 10px;
}
.logo h1 {
color: white;
font-size: 28px;
margin: 0;
font-family: 'cursive';
}
nav a {
color: white;
text-decoration: none;
font-size: 18px;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
.content {
text-align: center;
margin-bottom: 20px;
}
a {
color: #090349;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="images/22-removebg-preview.png" alt="Logo">
<h1>WAREHOUSE MANAGEMENT SYSTEM</h1>
</div>
<nav>
<a href="product.html">Product</a>
<a href="users/user.html">Users</a>
<a href="about.html">About</a>
<a href="contactus.html">Contact Us</a>
</nav>
</header>
<div class="content">
<h2>Added Successfully</h2>
<p>Thank you, the item has been added successfully.</p>
<a href="dashboard.html">Back to Dashboard</a>
</div>
</body>
</html>