All materials
error.ejs
ejserror.ejs
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><%= title %></title>
<style>
body { font-family: Arial, sans-serif; padding: 20px; background: #f5f5f0; }
.error { background: #fee; padding: 20px; border: 1px solid #fcc; border-radius: 8px; }
a { color: #2c5530; }
</style>
</head>
<body>
<div class="error">
<h2>An error occurred</h2>
<pre><%= error %></pre>
</div>
<p><a href="/">Back to home</a></p>
</body>
</html>