TiledViz
Loading...
Searching...
No Matches
400.html
1<!DOCTYPE html>
2<html lang="en">
3{% extends "base_main_template.html" %}
4
5{% block content %}
6
7
8 <style>
9 .error-body{
10 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
11 display: flex;
12 justify-content: center;
13 align-items: center;
14 min-height: 100vh;
15 color: #333;
16 }
17 .error-page {
18 text-align: center;
19 padding: 2rem;
20 }
21 .error-code {
22 font-size: 6rem;
23 font-weight: 700;
24 color: #e74c3c;
25 line-height: 1;
26 }
27 .error-title {
28 font-size: 1.5rem;
29 margin: 1rem 0;
30 }
31 .error-desc {
32 font-size: 1rem;
33 margin-bottom: 2rem;
34 }
35 </style>
36
37
38<div class="error-body">
39 <div class="error-page">
40 <div class="error-code">400</div>
41 <h1 class="error-title">Bad Request</h1>
42 <p class="error-desc">
43 Your cookie has expired.
44 Please go back and update page.
45 </p>
46 <a href="/">
47 <button type="button" name="buttonLogin" class="btn btn-primary btn-block btn-lg">Go Home</button>
48 </a>
49 </div>
50</div>
51
52{% endblock %}