-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtaskbrief.html
More file actions
38 lines (36 loc) · 1.06 KB
/
taskbrief.html
File metadata and controls
38 lines (36 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Briefing Sheet</title>
<link rel="stylesheet" href="taskbrief.css"/>
<link rel="stylesheet" href="lib/dcalendar.picker/dcalendar.picker.css" />
<script src="lib/jquery-2.1.3.min.js"></script>
<script src="lib/dcalendar.picker/dcalendar.picker.js"></script>
<script src="geocalc.js"></script>
<script src="taskbrief.js"></script>
</head>
<body>
<div class="content">
<h1>Task Briefing</h1>
<p><h4>Site: </h4><input type="text"/></p>
<p><h4>Date: </h4><input type="text" id="datepick" /></p>
<p><h4>Class: </h4><input type="text" /></p>
<p><h4>Task Ref: </h4><input type="text" /></p>
<table>
<tr><th></th><th>Abbr.</th><th>Name</th><th>Location</th><th>Track</th><th>Distance</th><th>Detail</th></tr>
<tbody id='tasklist'>
</tbody>
</table>
<p id="tasklength"></p>
<div id="warningbox">
<h3>Warnings:</h3>
<textarea id="warning"></textarea>
</div>
<div id="buttondiv">
<p><button id="printme">Print</button></p>
<p><button id="closeme">Close window</button></p>
</div>
</div>
</body>
</html>