-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwinterboer.html
More file actions
52 lines (51 loc) · 1.64 KB
/
Copy pathwinterboer.html
File metadata and controls
52 lines (51 loc) · 1.64 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Computer Checkout</title>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link href="css/south-street/jquery-ui-1.10.3.custom.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" >
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery-ui-1.10.3.custom.js"></script>
<script>
$(function() {
$( "#accordion" ).accordion({ active: false, collapsible: true});
});
</script>
</head>
<body>
<div id="accordion">
<h3>Checkout Computers</h3>
<div>
<iframe id="one" name="one" src="reserve.html" width="500" height="700"></iframe>
</div>
<h3>Pick Sheet by Block</h3>
<div>
<iframe id="two" src="pickSheet.html" width="500" height="700"></iframe>
</div>
<h3>Master Locator.</h3>
<div>
<iframe id="three" src="masterLocator.html" width="800" height="1024"></iframe>
</div>
<h3>Toggle computers in/out of service.</h3>
<div>
<iframe id="four" src="service.php" width="500" height="700"></iframe>
</div>
<h3>Show future requests by room.</h3>
<div>
<iframe id="five" src="roomLocator.html" width="800" height="1024"></iframe>
</div>
<h3>Show all requests for next two weeks.</h3>
<div>
<iframe id="six" src="allLocator.html" width="800" height="1024"></iframe>
</div>
<h3>Show past requests by room.</h3>
<div>
<iframe id="seven" src="pastLocator.html" width="800" height="1024"></iframe>
</div>
<h3>Delete a future request.</h3>
<div>
<iframe id="eight" src="setupForDelete.php" width="800" height="1024"></iframe>
</div>