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