-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_choice.php
73 lines (56 loc) · 1.86 KB
/
admin_choice.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
<!DOCTYPE html>
<html>
<head>
<title>Administator Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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="admin_menu.php">Admin Home</a></span></button>
<button class="button2" style="vertical-align:middle"><span><a href="log_out.php">Log Out</a></span></button>
</div>
<!-- End Navigation -->
<!-- Begin Faux Columns -->
<div id="faux">
<!-- Begin Left Column -->
<div id="leftcolumn">
<div class="column menu">
<ul>
<li><a href="admin_station.php">Station</a></li>
<li><a href="admin_officer.php">Officer</a></li>
<li><a href="admin_crime.php">Crime</a></li>
<li><a href="admin_user/user_insert.php">User</a></li>
</ul>
</div>
</div>
<!-- End Left Column -->
<!-- Begin Right Column -->
<div id="rightcolumn">
<h1> Welcome Administator </h1>
<br><br>
<p> Please choose your option from the navigation menu </p>
<br>
<ul>
<li>Select <b>Station</b> for Station related options</li> <br>
<li>Select <b>Officer</b> for Police Officer related options</li> <br>
<li>Select <b>Crime</b> for Crime related options from the database</li> <br>
<li>Select <b>User</b> for inserting a new User into the database </li> <br>
</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>