-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hostel Grievance Management System</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Hostel Grievance Management System</h1>
</header>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="#">Submit a Grievance</a></li>
<li><a href="view_grievences.html">View Grievances</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<main>
<h2>Submit a Grievance</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
</main>
<footer>
<p>© 2023 Hostel Grievance Management System</p>
</footer>
</body>
</html>