-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
62 lines (54 loc) · 2.05 KB
/
search.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
<?php include_once('includes/config.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>OFMS | Reporting</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Responsive navbar-->
<?php include_once('includes/header.php') ?>
<!-- Page Content-->
<div class="container px-4 px-lg-5">
<!-- Heading Row-->
<!-- Content Row-->
<div class="row gx-4 gx-lg-5">
<div class="col-md-12 mb-5">
<div class="card h-100">
<div class="card-body">
<h2 class="card-title">Online Fire Report</h2>
<form method="post" action="search-report-result.php">
<table class="table table-bordered">
<tbody>
<tr>
<th>Search By Reported by Name/ Mobile No / Location</th>
<td width="550"> <input type="text" class="form-control" id="serachdata" name="serachdata" required="true" placeholder="Enter Reported by Name/ Mobile No / Location"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="submit" class="btn btn-primary"></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Footer-->
<?php include_once('includes/footer.php') ?>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>