-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathratelimit.html
More file actions
38 lines (38 loc) · 1.08 KB
/
Copy pathratelimit.html
File metadata and controls
38 lines (38 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rate Limited</title>
<style>
body, html {
height: 100%;
font-family: sans-serif;
}
body {
background-color: #3c3c3c;
}
#emf-container {
background-color: #171123;
color: #c8c8c8;
margin-left: auto;
margin-right: auto;
width: 500px;
height: 200px;
margin-top: 100px;
box-shadow: 5px 5px 15px #222, -5px 5px 15px #222;
padding: 20px;
}
</style>
</head>
<body>
<div id="emf-container">
<h1>Rate Limited</h1>
<p>
You have made too many requests, so your request has been denied.
Please note that we will ban any automated scripts used to purchase tickets.
</p>
</div>
</body>
</html>