-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomplaint.html
More file actions
60 lines (48 loc) · 2.21 KB
/
complaint.html
File metadata and controls
60 lines (48 loc) · 2.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Farmer Complaint Portal</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="default-page">
<div class="schemes-container">
<h2 class="section-title">Raise a Complaint to the Government</h2>
<!-- ✅ Intro Box -->
<div class="welcome-box">
<p><strong>Note:</strong> This portal is connected with verified NGOs across India who help escalate farmer issues directly to government authorities. Once you submit, we forward your complaint through our network for resolution.</p>
</div>
<!-- ✅ Certificate -->
<div class="certificate-section">
<h4 style="margin-bottom: 10px;">Our NGO Partnership Certification</h4>
<img src="Assets/images/certificate.jpg" alt="NGO Certificate" class="certificate-img">
</div>
<!-- ✅ Complaint Form -->
<div class="scheme-card">
<form class="complaint-form" action="PHP/complaint.php" method="POST" enctype="multipart/form-data">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>
<label for="phone">Mobile Number:</label>
<input type="text" id="phone" name="phone" required>
<label for="location">District / Village:</label>
<input type="text" id="location" name="location" required>
<label for="scheme">Select Scheme:</label>
<select id="scheme" name="scheme" required>
<option value="">-- Select a Scheme --</option>
<option value="PM-KISAN">PM-KISAN</option>
<option value="PMFBY">PMFBY</option>
<option value="KCC">Kisan Credit Card</option>
<option value="Soil Health Card">Soil Health Card</option>
<option value="PMKSY">PMKSY</option>
<!-- Add more schemes as needed -->
</select>
<label for="complaint">Complaint Description:</label>
<textarea id="complaint" name="complaint" rows="5" required></textarea>
<label for="proof">Upload Proof (optional):</label>
<input type="file" id="proof" name="proof" accept=".pdf,.jpg,.jpeg,.png">
<input type="submit" value="Submit Complaint">
</form>
</div>
</div>
</body>
</html>