-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_station_choice.php
70 lines (54 loc) · 1.85 KB
/
admin_station_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
<!DOCTYPE html>
<html>
<head>
<title>Admin Station Choice</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="button" style="vertical-align:middle"><span><a href="admin_station.php">Station 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/station_insert.php">Insert Station</a></li>
<li><a href="admin_station/station_view.php">View Stations</a></li>
</ul>
</div>
</div>
<!-- End Left Column -->
<!-- Begin Right Column -->
<div id="rightcolumn">
<h1> Admin Station Choice </h1>
<br><br>
<p> Please choose your option from the navigation menu </p>
<br>
<ul>
<li>Select <b>Insert</b> for inserting a new Station into the database</li> <br>
<li>Select <b>Update</b> for Updating the Station information in the database</li> <br>
<li>Select <b>User</b> for User related options in 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>