Spaces:
Runtime error
Runtime error
imperialwool
commited on
Commit
•
b65f652
1
Parent(s):
57d80f0
beautiful pages ~~~
Browse files- templates/badgateway.html +3 -1
- templates/forbidden.html +3 -1
- templates/intervalservererror.html +3 -1
- templates/methodnotallowed.html +3 -1
- templates/notfound.html +3 -1
- templates/ratelimit.html +3 -1
templates/badgateway.html
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
<
|
|
|
|
|
|
1 |
+
<title>502 Bad Gateway</title>
|
2 |
+
<style>body {background-color:black;}div#a {font-family:Helvetica, system-ui, sans-serif;color:white!important;line-height:0.5;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}</style>
|
3 |
+
<div id="a"><h1>502</h1><h2>Bad Gateway</h2></div>
|
templates/forbidden.html
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
<
|
|
|
|
|
|
1 |
+
<title>403 Forbidden</title>
|
2 |
+
<style>body {background-color:black;}div#a {font-family:Helvetica, system-ui, sans-serif;color:white!important;line-height:0.5;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}</style>
|
3 |
+
<div id="a"><h1>403</h1><h2>Forbidden</h2></div>
|
templates/intervalservererror.html
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
<
|
|
|
|
|
|
1 |
+
<title>500 Internal Server Error</title>
|
2 |
+
<style>body {background-color:black;}div#a {font-family:Helvetica, system-ui, sans-serif;color:white!important;line-height:0.5;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}</style>
|
3 |
+
<div id="a"><h1>500</h1><h2>Internal Server Error</h2></div>
|
templates/methodnotallowed.html
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
<
|
|
|
|
|
|
1 |
+
<title>405 Method Not Allowed</title>
|
2 |
+
<style>body {background-color:black;}div#a {font-family:Helvetica, system-ui, sans-serif;color:white!important;line-height:0.5;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}</style>
|
3 |
+
<div id="a"><h1>405</h1><h2>Method Not Allowed</h2></div>
|
templates/notfound.html
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
<
|
|
|
|
|
|
1 |
+
<title>404 Not Found</title>
|
2 |
+
<style>body {background-color:black;}div#a {font-family:Helvetica, system-ui, sans-serif;color:white!important;line-height:0.5;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}</style>
|
3 |
+
<div id="a"><h1>404</h1><h2>Not found</h2></div>
|
templates/ratelimit.html
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
<
|
|
|
|
|
|
1 |
+
<title>429 Too Many Requests</title>
|
2 |
+
<style>body {background-color:black;}div#a {font-family:Helvetica, system-ui, sans-serif;color:white!important;line-height:0.5;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}</style>
|
3 |
+
<div id="a"><h1>429</h1><h2>Too Many Requests</h2></div>
|