forked from isichos/epa
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path404.html
More file actions
72 lines (58 loc) · 2.31 KB
/
404.html
File metadata and controls
72 lines (58 loc) · 2.31 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
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DSO Toolbox</title>
<link rel="shortcut icon" type="image/png" href="{% static 'images/favicon.png' %}">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"/>
<link rel="stylesheet" href="../static/css/bootstrap.min.css">
<link rel="stylesheet" href="../static/css/map.css">
<link rel="stylesheet" href="../static/css/mdb.min.css">
<link rel="stylesheet" href="../static/css/style.min.css/">
<link rel="stylesheet" href="../static/css/style_extra.css/">
<link rel="stylesheet" href="../static/css/datatables.min.css/">
<link rel="stylesheet" href="../static/css/styles.css/">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.css" rel="stylesheet"/>
</head>
<style>
body{
background:#65c8c9;
}
.errorheading{
color:#65c8c9;
}
.errorredirect{
background-color: #65c8c9;
}
.errorredirect:hover{
background-color: #65c8c9;
}
</style>
<body>
<br><br><br><br><br>
<div class="container">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<div class="box1">
<br><br>
<h1 class="errorheading"> 404 </h1>
<br>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src="https://assets2.lottiefiles.com/packages/lf20_s3PG4r.json" background="transparent" speed="1"
style="width: 200px; height: 200px; position:relative; top:-200px;" loop autoplay></lottie-player>
<p class="errorparag">{% translate "Error! The page you requested could not be found." %}</p>
<br>
<a class="errorredirect" href="">
{% translate "Go to Home Page" %}</a><br><br>
</div><br><br>
</div>
<div class="col-md-2"></div>
</div>
</div>
</body>
</html>