-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_home.php
79 lines (57 loc) · 1.54 KB
/
index_home.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
<?php
session_start();
session_unset();
session_destroy();
?>
<!DOCTYPE html>
<html>
<head>
<title>Main Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<!-- Begin Wrapper -->
<div id="wrapper">
<!-- Begin Header -->
<div id="header"><h1>Criminal Record Management System</h1></div>
<!-- End Header -->
<!-- Begin Navigation -->
<div id="navigation">
<button class="button" style="vertical-align:middle;"><span><a href="index_home.php">Home</a></span></button>
</div>
<!-- End Navigation -->
<!-- Begin Faux Columns -->
<div id="faux">
<!-- Begin Left Column -->
<div id="leftcolumn">
<div class="menu">
<ul>
<li><a href="index_officer.php">Police Officer</a></li>
<li><a href="index_admin.php">Administrator</a></li>
</ul>
</div>
</div>
<!-- End Left Column -->
<!-- Begin Right Column -->
<div id="rightcolumn">
<h1> Welcome to Criminal Record Management System </h1>
<br><br>
<p> Please Select your option from the navigation menu </p>
<br><br>
<ul>
<li> Officer :- If you are a Police Officer</li>
<br><br>
<li>Administrator :- If you are Administrator</li>
</ul>
</div>
<!-- End Right Column -->
</div>
<!-- End Faux Columns -->
<!-- Begin Footer -->
<div id="footer"> This is the Footer </div>
<!-- End Footer -->
</div>
<!-- End Wrapper -->
</body>
</html>