-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
163 lines (149 loc) · 4.03 KB
/
contactus.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
color: #333;
margin: 0;
padding: 0;
}
footer {
background-color: #080c67;
color: #fff;
text-align: center;
padding: 20px 0;
}
.container {
max-width: 800px;
margin: 200px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
display: flex;
}
.form-container {
flex: 1;
padding: 0 20px;
}
form {
margin-top: 20px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 8px;
}
input[type="text"],
textarea {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
background-color: #3498db;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
input[type="submit"]:hover {
background-color: #2980b9;
}
.image-container {
flex: 1;
text-align: center;
}
.image-container img {
max-width: 100%;
height: auto;
}
/* Header styles */
header {
background-color: #090349;
color: white;
padding: 10px 20px;
text-align: center;
width: 100%;
position: fixed;
top: 0;
z-index: 1000;
}
.logo {
display: flex;
align-items: center;
justify-content: center;
}
.logo img {
width: 60px;
height: 60px;
margin-right: 10px;
}
.logo h1 {
font-size: 24px;
margin: 0;
}
nav {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
}
nav a {
color: white;
text-decoration: none;
font-size: 16px;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="images/22-removebg-preview.png" alt="Logo">
<h1>WAREHOUSE MANAGEMENT SYSTEM</h1>
</div>
<div>
<a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a>
<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>
<button class="logout-btn" onclick="openLogoutPopup()">Logout</button>
</div>
</nav>
</header>
<div class="container">
<div class="image-container">
<img src="images/con_5.jpg" alt="Image">
</div>
<div class="form-container">
<form action="submit_contact.php" method="post">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Your Email:</label>
<input type="text" id="email" name="email" required>
<label for="message">Your Message:</label>
<textarea id="message" name="message" rows="6" required></textarea>
<input type="submit" value="Send Message">
</form>
</div>
</div>
<footer>
<p>© 2024 ABC Company. All rights reserved.</p>
</footer>
</body>
</html>