TiledViz
Loading...
Searching...
No Matches
504.html
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6{% extends "base_main_template.html" %}
7
8{% block content %}
9
10
11 <style>
12 .error-body{
13 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
14 display: flex;
15 justify-content: center;
16 align-items: center;
17 min-height: 100vh;
18 color: #333;
19 }
20 .error-page {
21 text-align: center;
22 padding: 2rem;
23 }
24 .error-code {
25 font-size: 6rem;
26 font-weight: 700;
27 color: #9b59b6;
28 line-height: 1;
29 }
30 .error-title {
31 font-size: 1.5rem;
32 margin: 1rem 0;
33 }
34 .error-desc {
35 font-size: 1rem;
36 margin-bottom: 2rem;
37 }
38 </style>
39
40<div class="error-body">
41 <div class="error-page">
42 <div class="error-code">504</div>
43 <h1 class="error-title">Gateway Timeout</h1>
44 <p class="error-desc">
45 An error has occured with TiledViz. We are really sorry about this.
46 Your connection has never reached the connection machine.
47 Please try again with a new connection.
48 </p>
49 <a href="/">
50 <button type="button" name="buttonLogin" class="btn btn-primary btn-block btn-lg">Go Home</button>
51 </a>
52 </div>
53</div>
54
55{% endblock %}
56