forked from prof-joestarush/GFG-FINAL-SUBMISSION
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgriev.html
64 lines (56 loc) · 2.64 KB
/
griev.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Grievance.css">
<title>Grievance Redressal System</title>
</head>
<body>
<header>
<!-- Header content and navigation -->
</header>
<main>
<div id="map"></div>
<div id="grievance-form">
<!-- Grievance submission form -->
</div>
<div id="grievance-form">
<h2>Submit a Grievance</h2>
<form id="grievance-submission-form">
<label for="grievance-type">Select the type of grievance:</label>
<select id="grievance-type" name="grievance-type">
<option value="Water">Water</option>
<option value="Electricity">Electricity</option>
<option value="Sewer">Sewer</option>
</select>
<label for="description">Description of the grievance:</label>
<textarea id="description" name="description" rows="4" cols="50" required></textarea>
<!-- Water Problem Specific Questions -->
<div id="water-problem-questions" class="problem-questions">
<label for="water-cause">What is causing the water problem?</label>
<input type="text" id="water-cause" name="water-cause">
</div>
<!-- Electricity Problem Specific Questions -->
<div id="electricity-problem-questions" class="problem-questions">
<label for="electricity-duration">How long has the electricity problem been occurring?</label>
<input type="text" id="electricity-duration" name="electricity-duration">
</div>
<!-- Sewer Problem Specific Questions -->
<div id="sewer-problem-questions" class="problem-questions">
<label for="sewer-location">Location of the sewer problem:</label>
<input type="text" id="sewer-location" name="sewer-location">
</div>
<label for="location">Location of the grievance:</label>
<input type="text" id="location" name="location" required>
<!-- Additional fields like images, contact information, etc. can be added as needed -->
<button type="submit">Submit Grievance</button>
</form>
</div>
</main>
<footer>
<!-- Footer content -->
</footer>
<script src="Griev.js"></script>
</body>
</html>