-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeclaration.html
More file actions
66 lines (62 loc) · 2.19 KB
/
declaration.html
File metadata and controls
66 lines (62 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Task Declaration</title>
<link rel="stylesheet" href="declaration.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="declaration.js"></script>
</head>
<body>
<div class="content">
<h1>Task Declaration</h1>
<table class="userdata">
<tr><th>Pilot Name: </th><td><input type="text" /></td>
<th>Date of flight: </th><td><input type="text" id="datepick" /></td></tr>
<tr><th>Glider type: </th><td><input type="text" /></td><th>Registration: </th><td><input type="text" /></td></tr>
<tr><th>Flight recorder model: </th><td><input type="text" /></td><th>Serial no: </th><td><input type="text" /></td></tr>
</table>
<p><h3>Route:</h3></p>
<table id='route'>
</table>
<br><br>
<p><h4>Pilot: </h4></p>
<div class="table">
<div class="row">
<div class="cell cellcontent">Signature:</div>
<div class="cell underline"></div><div></div>
</div>
<div class="row">
<div class="cell cellcontent">Date:</div>
<div class="cell underline"></div>
<div class="cell cellcontent">Time:</div>
<div class="cell underline"></div>
</div>
</div>
<br><br>
<p><h4>Official Observer: </h4></p>
<div class="table">
<div class="row">
<div class="cell cellcontent">Signature:</div>
<div class="cell underline"></div>
<div class="cell cellcontent">Number:</div>
<div class="cell underline"></div>
</div>
<div class="row">
<div class="cell cellcontent">Date:</div>
<div class="cell underline"></div>
<div class="cell cellcontent">Time:</div>
<div class="cell underline"></div>
</div>
</div>
<p id='warning'>Note: The coordinates in this declaration are definitive. If you are using GPS for navigation ensure these are the ones entered.</p>
<div id="buttondiv">
<p><button id="printme">Print</button></p>
<p><button id="closeme">Close window</button></p>
</div>
</div>
</body>
</html>