-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfail.html
69 lines (66 loc) · 2.13 KB
/
fail.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
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
<!DOCTYPE html>
<html lang="en">
<link rel="shortcut icon" href="/static/img/favicon.ico" type="image/x-icon"/>
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
<link href="/static/css/style.css" rel="stylesheet">
<link href="/static/css/custom.css" rel="stylesheet">
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Error</title>
<meta name="description" content="Source code generated using layoutit.com">
</head>
<body>
<div class="container-fluid">
<br>
<center>
{% if error == "waypoint" %}
<h4>
Route update failed.
</h4>
<br>
<br>
Your new waypoint was not found or was too far away to be included.
<br>
<br>
{% elif error == "creation" %}
<h4>
Route creation failed.
</h4>
<br>
<br>
Something went wrong. Please try again.
<br>
<br>
{% elif error == "creation" %}
<h4>
PDF creation failed.
</h4>
<br>
<br>
Something went wrong. Please try again.
<br>
<br>
{% elif error == "distance" %}
<h4>
Route creation failed.
</h4>
<br>
<br>
Those airports are a bit too far - try a shorter route to start (under 1000 nm).
<br>
<br>
{% else %}
Something went wrong. Please try again.
{% endif %}
<br><br>
<input type="button" style="border-radius:5px" class="btn btn-primary" value="Back" onclick="window.history.back()"/>
</center>
</div>
<script src="/static/js/bootstrap.min.js"></script>
</body>
</html>