-
Notifications
You must be signed in to change notification settings - Fork 0
/
complaint.html
80 lines (74 loc) · 2.56 KB
/
complaint.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="cssp.css">
<title>COMPLAINT</title>
<style>
.button {
background-color: #4CAF50;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button1 {width: 150px;}
</style>
</head>
<body id="body">
<center>
<div>
<img class="size" src="TamilNadu.png" width="10%" height="25%">
</center>
<div><center> <img src="police.png" width="15%" height="35%" alt="not found"></center></div>
<center>
<h1 id="a">Fake Vehicles Identifier</h1>
<div id ="menu">
<ul>
<li><a href="index.html">ABOUT</a></li>
<li><a href="verification.html">VERIFICATION</a></li>
<li><a href="complaint.html">COMPLAINT</a></li>
<li><a href="contact.html">CONTACT US</a></li>
</ul>
</DIV>
</body>
<form action="comp.php" method="post" id="comp">
<br>
<br>
<label>
Location : </label><input type="text" id="demo" name="loc" required>
<br>
<br>
<label>Phone No : </label><input type="tel" size="10" name="ph_no" required>
<br>
<br>
<label> Type of Vehicle :</label>
<select required class="drop" name="v_type" required>
<option value="select">select</option>
<option value="two">two wheeler</option>
<option value="three">Three Wheeler</option>
<option value="four">Four Wheeler</option>
<option value="bus">Bus & Van</option>
<option value="goods">Goods Carrier</option>
</select>
<br>
<br>
<label>Colour of Vehicle : </label><input type="text" name="c_vech">
<br>
<br>
<label>Registration No : </label><input type="text" name="reg_no" required>
<br>
<br>
<label>Area : </label><input type="text" name="area" required>
<br>
<br>
<br>
<button class="button button1" value="save">Submit</button><br>
</form>
</center>
</body>
</html>