forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
/public/glyphs.json | ||
/public/javascripts/vendor | ||
/public/vendor | ||
/public/oops/429.html | ||
|
||
/translation/dest | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,43 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Too many requests • lichess.org</title> | ||
<style> | ||
body { | ||
max-width: min(100%, 600px); | ||
margin: auto; | ||
background: #000; | ||
text-align: center; | ||
padding: 2em 1em; | ||
} | ||
body, a { | ||
color: #ebd488; | ||
} | ||
code { | ||
background: #ebd488; | ||
color: black; | ||
border: #ebd488; | ||
font-size: 2em; | ||
display: inline-block; | ||
margin: 0.5em 0; | ||
word-break: break-all; | ||
} | ||
</style> | ||
</head> | ||
</body> | ||
<h1>Too many requests • <a href="https://lichess.org">lichess.org</a></h1> | ||
<p>Your network has sent too many requests. Wait a moment before <a href="javascript:history.back();">trying again</a>.</p> | ||
<p>If you are connecting from a school or chess club, you can contact us at <a href="mailto:[email protected]">[email protected]</a> and ask us to lift the limitation for your IP address.</p> | ||
<p>Please mention your IP address in the email: <code>IPADDR</code></p> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Too many requests • lichess.org</title> | ||
<style> | ||
body { | ||
max-width: min(100%, 600px); | ||
margin: auto; | ||
background: #000; | ||
text-align: center; | ||
padding: 2em 1em; | ||
} | ||
body, | ||
a { | ||
color: #ebd488; | ||
} | ||
code { | ||
background: #ebd488; | ||
color: black; | ||
border: #ebd488; | ||
font-size: 2em; | ||
display: inline-block; | ||
margin: 0.5em 0; | ||
word-break: break-all; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Too many requests • <a href="https://lichess.org">lichess.org</a></h1> | ||
<p> | ||
Your network has sent too many requests. Wait a moment before | ||
<a href="javascript:history.back();">trying again</a>. | ||
</p> | ||
<p> | ||
If you are connecting from a school or chess club, you can contact us at | ||
<a href="mailto:[email protected]">[email protected]</a> and ask us to lift the limitation for your | ||
IP address. | ||
</p> | ||
<p>Please mention your IP address in the email: <code>IPADDR</code></p> | ||
</body> | ||
</html> |