-
Notifications
You must be signed in to change notification settings - Fork 11
/
complainer_page.php
193 lines (164 loc) · 6.51 KB
/
complainer_page.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html>
<?php
session_start();
if(!isset($_SESSION['x']))
header("location:userlogin.php");
$conn=mysql_connect("localhost","root","");
if(!$conn)
{
die("could not connect".mysql_error());
}
mysql_select_db("crime_portal",$conn);
$u_id=$_SESSION['u_id'];
$result=mysql_query("SELECT a_no FROM user where u_id='$u_id' ");
$q2=mysql_fetch_assoc($result);
$a_no=$q2['a_no'];
$result1=mysql_query("SELECT u_name FROM user where u_id='$u_id' ");
$q2=mysql_fetch_assoc($result1);
$u_name=$q2['u_name'];
if(isset($_POST['s'])){
$con=mysql_connect('localhost','root','');
if(!$con)
{
die('could not connect: '.mysql_error());
}
if($_SERVER["REQUEST_METHOD"]=="POST")
{
$location=$_POST['location'];
$type_crime=$_POST['type_crime'];
$d_o_c=$_POST['d_o_c'];
$description=$_POST['description'];
$var=strtotime(date("Ymd"))-strtotime($d_o_c);
if($var>=0)
{
$comp="insert into complaint(a_no,location,type_crime,d_o_c,description) values('$a_no','$location','$type_crime','$d_o_c','$description')";
mysql_select_db("crime_portal");
$res=mysql_query($comp,$con);
if(!$res)
{
$message1 = "Complaint already filed";
echo "<script type='text/javascript'>alert('$message1');</script>";
}
else
{
$message = "Complaint Registered Successfully";
echo "<script type='text/javascript'>alert('$message');</script>";
}
}
else
{
$message = "Enter Valid Date";
echo "<script type='text/javascript'>alert('$message');</script>";
}
}
}
?>
<script>
function f1()
{
var sta1=document.getElementById("desc").value;
var x1=sta1.trim();
if(sta1!="" && x1==""){
document.getElementById("desc").value="";
document.getElementById("desc").focus();
alert("Space Found");
}
}
</script>
<head>
<title>Complainer Home Page</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<link href="complainer_page.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body style="background-size: cover;
background-image: url(home_bg1.jpeg);
background-position: center;">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="home.php"><b>Home</b></a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li ><a href="userlogin.php">User Login</a></li>
<li class="active"><a href="complainer_page.php">User Home</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="complainer_page.php">Log New Complain</a></li>
<li><a href="complainer_complain_history.php">Complaint History</a></li>
<li><a href="logout.php">Logout   <i class="fa fa-sign-out" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</nav>
<div class="video" style="margin-top: 5%">
<div class="center-container">
<div class="bg-agile">
<br><br>
<div class="login-form"><p><h2 style="color:white">Welcome <?php echo "$u_name" ?></h2></p><br>
<p><h2>Log New Complain</h2></p><br>
<form action="#" method="post" style="color: gray">Aadhar
<input type="text" name="aadhar_number" placeholder="Aadhar Number" required="" disabled value=<?php echo "$a_no"; ?>>
<div class="top-w3-agile" style="color: gray">Location of Crime
<select class="form-control" name="location">
<?php
$loc=mysql_query("select location from police_station");
while($row=mysql_fetch_array($loc))
{
?>
<option> <?php echo $row[0]; ?> </option>
<?php
}
?>
</select>
</div>
<div class="top-w3-agile" style="color: gray">Type of Crime
<select class="form-control" name="type_crime">
<option>Theft</option>
<option>Robbery</option>
<option>Pick Pocket</option>
<option>Murder</option>
<option>Rape</option>
<option>Molestation</option>
<option>Kidnapping</option>
<option>Missing Person</option>
</select>
</div>
<div class="Top-w3-agile" style="color: gray">
Date Of Crime :    
<input style="background-color: #313131;color: white" type="date" name="d_o_c" required>
</div>
<br>
<div class="top-w3-agile" style="color: gray">
Description
<textarea name="description" rows="20" cols="50" placeholder="Describe the incident in details with time" onfocusout="f1()" id="desc" required></textarea>
</div>
<input type="submit" value="Submit" name="s">
</form>
</div>
</div>
</div>
</div>
<div style="position: relative;
left: 0;
bottom: 0;
width: 100%;
height: 30px;
background-color: rgba(0,0,0,0.8);
color: white;
text-align: center;">
<h4 style="color: white;">© <b>Crime Portal 2018</b></h4>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>