-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcstaff.html
42 lines (42 loc) · 2.36 KB
/
cstaff.html
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>QAL Library System | Counter Staff Panel</title>
<link rel="author" href="humans.txt"/>
<!--link to the css-->
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
</head>
<body>
<script>
//handler for the navigation div, helps with page direction
$("#navigation").change(function()
{
document.location.href = $(this).val();
});
</script>
<div class="pageheader">
<img src="img/logo.png" alt="Page Logo" height="175" width="325" align="right">
<h1>Counter Staff Panel</h1>
</div>
<header>
<button class="buttons" id="btnsignout" onClick="location.href = 'http://my.tech.dmu.ac.uk/~p13198051/index.html'"> Sign Out </button>
</header>
<p class="welcome"> Welcome to the QAL Library Counter Staff Panel</p>
<!-- these are all the buttons for the required actions on the admin panel -->
<div id="navigation">
<button class="buttons" id="btnClear" onClick="location.href = 'http://aspen.dmu.ac.uk/p13198051/bcat_staff.asp'"> Book Catalogue </button>
<button class="buttons" id="btnClear" onClick="location.href = 'http://aspen.dmu.ac.uk/p13198051/fines_staff.asp'"> Fines </button>
<button class="buttons" id="btnClear" onClick="location.href = 'logreturn.html'"> Log Return </button>
<button class="buttons" id="btnClear" onClick="location.href = 'issueloan.html'"> New Loan </button>
<button class="buttons" id="btnClear" onClick="location.href = 'http://aspen.dmu.ac.uk/p13198051/res_staff.asp'"> Reservations </button>
<button class="buttons" id="btnClear" onClick="location.href = 'http://aspen.dmu.ac.uk/p13198051/uman.asp'"> User Management </button>
<button class="buttons" id="btnClear" onClick="location.href = 'http://aspen.dmu.ac.uk/p13198051/paym_staff.asp'"> Payments </button>
</div>
<footer>
<!--inserts return and help buttons-->
<button class="buttons" id="help" onClick="location.href = 'http://my.tech.dmu.ac.uk/~p13198051/help.html'"> Help </button>
</footer>
</body>
</html>