firepup-site/public/errors/422.ejs

22 lines
759 B
Text
Raw Normal View History

2023-10-01 23:39:12 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>FP650 - 422 Error</title>
2024-04-27 02:56:26 +00:00
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
2023-10-01 23:39:12 +00:00
</head>
<body>
<h5 hidden id='Maintenance' class="center"></h5>
2023-10-01 23:39:12 +00:00
<h1 class="center warning">422 Unprocessable Entity</h1>
<% if (typeof message !== 'undefined') { %>
<h2 class="center warning">Error message:</h2>
<p class="center warning"><%= message %></p>
<% } else { %>
<p class="center warning">The requested url did not match a valid image request format.</p>
<% } %>
<script src="/script.js"></script>
2023-10-01 23:39:12 +00:00
</body>
2024-04-27 02:56:26 +00:00
</html>