-
Notifications
You must be signed in to change notification settings - Fork 1
/
others.php
56 lines (48 loc) · 1.98 KB
/
others.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
<?php
session_start();
include_once 'dbconnect.php';
if(!isset($_SESSION['userSession']))
{
header("Location: login.php");
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Free India | Other Info</title>
<link rel="shortcut icon" href="./assets/img/logo.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<script src="./assets/js/jquery.min.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<script type= "text/javascript" src = "./assets/js/cs.js"></script>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<ul class="nav nav-pills" role="tablist" style="background-color:rgba(63,84,191,0.3);margin:5%;border-radius:5px;">
<li><a href="home.php"><img src="./assets/img/logo.png" width="15px" title="Citizen Services" alt="" /> Home</a></li>
<li><a href="complaint.php">Complaints Analysis</a></li>
<li><a href="status.php">Complaint Status</a></li>
<li style="float:right;"><a href="logout.php?logout='bye'" style="text-decoration:none;">Logout</a></li>
<li style="float:right;"><a href="others.php">Other Useful Links</a></li>
</ul>
<div class="col-md-offset-2 col-md-8 col-md-offset-2" style="background-color:rgba(239, 235, 229,0.5);border-radius:10px;padding-bottom:5%;font-size:15px;">
<h3>Useful Links:</h3>
<ul>
<li><a class="link" href="http://www.mybmtc.com/">Police Website</a></li>
<li><a class="link" href="http://www.bbus.in/">Traffic Police Website</a></li>
<li><a class="link" href="http://www.mybmtc.com/">Public Works Dept</a></li>
<li><a class="link" href="http://www.bbus.in/">Others</a></li>
</ul>
<hr />
<h3>Contact Us</h3>
Contact Police Commissioner: xyz@mail.com
<br />
Contact Traffic Police Commissioner: abc@mail.com
<br />
Contect PWD Head: qwerty@mail.com
</div>
</body>
</html>