Files
pwss/docker-pwss/code/templates/ratelimit.html
2022-08-18 15:42:27 +03:00

56 lines
1.2 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset=utf-8/>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes" />
<style>
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 100%;
height: 100%;
}
body {
background-color: #2c3338;
color: #fff;
font-family: 'Open Sans', sans-serif;
font-size: 24px;
font-size: 0.875rem;
font-weight: 400;
height: 100%;
line-height: 1.5;
margin: 0;
min-height: 100vh;
}
.align {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
</style>
</head>
<body class=align>
Ratelimit exceeded: {{ description }}
<script>
setTimeout(function(){
location.reload();
}, 60000);
</script>
</body>
</html>