24 lines
605 B
HTML
24 lines
605 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>503 Service Unavailable</title>
|
|
|
|
<style>
|
|
html {
|
|
background-color: #111;
|
|
color: #efefef;
|
|
display: grid;
|
|
place-items: center;
|
|
min-height: 50%;
|
|
font-family: sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>503 Service Unavailable</h2>
|
|
<p>This endpoint is not currently servicing requests. Please try again later.</p>
|
|
<!--SSR_APIVERSION-->
|
|
</body>
|
|
</html> |