TiledViz
Toggle main menu visibility
Loading...
Searching...
No Matches
404.html
1
{% extends "base_main_template.html" %}
2
3
{% block content %}
4
5
6
<style>
7
.error-body{
8
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
9
display: flex;
10
justify-content: center;
11
align-items: center;
12
min-height: 100vh;
13
color: #333;
14
}
15
.error-page {
16
text-align: center;
17
padding: 2rem;
18
}
19
.error-code {
20
font-size: 6rem;
21
font-weight: 700;
22
color: #3498db;
23
line-height: 1;
24
}
25
.error-title {
26
font-size: 1.5rem;
27
margin: 1rem 0;
28
}
29
.error-desc {
30
font-size: 1rem;
31
margin-bottom: 2rem;
32
}
33
</style>
34
35
<div class="error-body">
36
<div class="error-page">
37
<div class="error-code row">404</div>
38
<h1 class="error-title row">Page Not Found</h1>
39
<p class="error-desc row">
40
The page you are looking for might have been removed,
41
had its name changed, or doesn't exist.
42
</p>
43
<a href="/">
44
<button type="button" name="buttonLogin" class="btn btn-primary btn-block btn-lg">Go Home</button>
45
</a>
46
</div>
47
</div>
48
49
{% endblock %}
50
TVWeb
app
templates
error_pages
404.html
Documentation for
TiledViz
$tiledvizversion