Initial commit

This commit is contained in:
Firepup Sixfifty 2023-10-01 18:39:12 -05:00
commit 208e773d65
62 changed files with 4545 additions and 0 deletions

24
public/errors/403.ejs Normal file
View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>FP650 - 403 Error</title>
<link href="https://firepup650.repl.co/ejsstyle.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/bounce.css" rel="stylesheet" type="text/css" />
<!--><script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script></!-->
<!--><script async src="https://api.countapi.xyz/hit/firepup650.repl.co/403error"></script></!-->
</head>
<body>
<h1 class="center warning">403 Forbidden</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 page is forbidden to access on the server.</p>
<% } %>
<script src="https://firepup650.repl.co/footer.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

24
public/errors/404.ejs Normal file
View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>FP650 - 404 Error</title>
<link href="https://firepup650.repl.co/ejsstyle.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/bounce.css" rel="stylesheet" type="text/css" />
<!--><script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script></!-->
<!--><script async src="https://api.countapi.xyz/hit/firepup650.repl.co/404error"></script></!-->
</head>
<body>
<h1 class="center warning">404 Not Found</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 page was not found on the server.</p>
<% } %>
<script src="https://firepup650.repl.co/footer.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

22
public/errors/422.ejs Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>FP650 - 422 Error</title>
<link href="https://firepup650.repl.co/ejsstyle.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/bounce.css" rel="stylesheet" type="text/css" />
</head>
<body>
<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="https://firepup650.repl.co/footer.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

25
public/errors/500.ejs Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>FP650 - 500 Error</title>
<link href="https://firepup650.repl.co/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/bounce.css" rel="stylesheet" type="text/css" />
<!--><script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script></!-->
<!--><script async src="https://api.countapi.xyz/hit/firepup650.repl.co/500error"></script></!-->
</head>
<body>
<h1 class="center warning">500 Internal Server Error</h1>
<p class="center warning">An error has occurred on the server.</p>
<% if (error) { %>
<h2 class="center warning">Error message:</h2>
<pre class="center warning"><%= error.message %></pre>
<h2 class="center warning">Stack trace:</h2>
<pre class="center warning"><%= error.stack %></pre>
<% } %>
<script src="https://firepup650.repl.co/footer.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>