firepup-site/public/errors/500.ejs
9pfs dfa2ad7288 Make lots of changes
I made lots of changes and removed a few leftover dependencies that got copied over from the world of Replit.

Reviewed-on: https://git.amcforum.wiki/Firepup650/firepup-site/pulls/5
Co-authored-by: 9pfs <9pfs@amcforum.wiki>
Co-committed-by: 9pfs <9pfs@amcforum.wiki>
2023-10-01 22:21:42 -04:00

23 lines
No EOL
953 B
Text

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>FP650 - 500 Error</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="/styles/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="/footer.js"></script>
</body>
</html>