-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFilecomp.php
146 lines (143 loc) · 5.23 KB
/
Filecomp.php
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
<!DOCTYPE HTML>
<HTML lang="en">
<HEAD>
<meta charset="utf-8">
<title>File Complaint</title>
<link rel = "icon" href = "img/like.png" type = "image/x-icon">
<link rel="stylesheet" href="css/Raise.css">
</HEAD>
<BODY>
<table class="a">
<tr>
<td height="40" align="center">
<img alt="" src="img/logo.png" width="250px" height="200px" align="absmiddle">
</td>
</tr>
</table>
<div class="topnav">
<a href="Viewcomp.php">View Complaints</a>
<a href="Filecomp.php" class="active">File Complaint</a>
<a href="Index.php">Home</a>
</div>
<table cellpadding="0px" class="a">
<tr>
<td style="text-align: center; font-family: sans-serif; font-size: 15px; color: #000000;">
<b><i>Raise My Voice</i> is the platform to raise your voice against unjust.<br>This is the place where your problems are solved<br>Solution for the cause of revolt.</b>
</td>
</tr>
</table>
<h1 colspan="100px" class="a">
<br>File Complaint<br> 
</h1>
<form action="backend/submit.php" method="POST" enctype="multipart/form-data">
<table bgcolor="#222222" style="font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', 'serif';
font-size: 15px; color: #FFFFFF;" align="center" width="100%">
<tr><td>
<table bgcolor="#222222" style="font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', 'serif';
font-size: 15px; color: #FFFFFF;" align="center">
<tr width="100px"> <br>
<td style="text-align: right;">First name :</td>
<td style="text-align: left;">
<input type="text" name="fname" placeholder="First Name*" class="defaultTextBox" required />
</td>
</tr>
<tr>
<td style="text-align: right;">Last name :</td>
<td style="text-align: left;">
<input type="text" name="lname" placeholder="Last Name" class="defaultTextBox" />
</td>
</tr>
<tr>
<td style="text-align: right;"> </td>
<td style="text-align: left;"> </td>
</tr>
<tr>
<td style="text-align: right;">Show my name :</td>
<td style="text-align: left;">
<input type="radio" name="sname" value="Y" required />Yes
<input type="radio" name="sname" value="N" required />No   (Select Yes if want to display your name in the complaint)
</td>
</tr>
<tr>
<td style="text-align: right;"> </td>
<td style="text-align: left;"> </td>
</tr>
<tr>
<td style="text-align: right;">E-mail :</td>
<td style="text-align: left;">
<input type="email" name="email" placeholder="email*" class="defaultTextBox" required />
</td>
</tr>
<tr>
<td style="text-align: right;">Zip code :</td>
<td style="text-align: left;">
<input type="number" placeholder="Postal Code*" name="zip" class="defaultTextBox" required />
</td>
</tr>
<tr>
<td style="text-align: right;"> </td>
<td style="text-align: left;"> </td>
</tr>
<tr>
<td style="text-align: right;">Complaint On:</td>
<td style="text-align: left;">
<input type="text" placeholder="Name or the Department of the complaint*" name="dep" class="defaultTextBox" required />
</td>
</tr>
<tr>
<td style="text-align: right;"> </td>
<td style="text-align: left;"> </td>
</tr>
<tr>
<td style="text-align: right;">Complaint :</td>
<td style="text-align: left;">
<textarea placeholder="Describe Your Complaint Briefly*" name="complaint" rows="8" cols="60" class="topnav" required ></textarea>
</td>
</tr>
<tr>
<td style="text-align: right;"> </td>
<td style="text-align: left;"> </td>
</tr>
<tr>
<td style="text-align: right;">Upload proof :</td>
<td style="text-align: left;">
<input class="" type="file" placeholder="Upload proof*" name="proof" />
</td>
</tr>
<tr>
<td style="text-align: right;"> </td>
<td style="text-align: left;"> </td>
</tr>
<tr>
<td style="text-align: right;">Captcha :</td>
<td style="text-align: left;" class="a"><br>
<input type="text" class="defaultTextBox" id="captcha" placeholder="Enter captcha" name="captcha" />
<img src="backend/captcha.php"/>
<br> 
</td>
</tr>
</table>
<table align="center">
<tr>
<td align="center" class="a">
<br>
<input type="submit" value="Submit" class="submit" onclick="" />
<br> 
</td>
</tr>
</table>
<table align="right">
<tr>
<td align="right">
<br>
*(Required Fields)
<br> 
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</BODY>
</HTML>