<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>APS — Error <%= code %></title>
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
  <style>
    body { background: #f0f2f5; }
    .error-card { max-width: 480px; margin: 10vh auto; text-align: center; }
    .code { font-size: 4rem; font-weight: 700; color: #d1d5db; line-height: 1; }
  </style>
</head>
<body>
  <div class="error-card">
    <div class="code"><%= code %></div>
    <p class="text-muted mt-2"><%= message %></p>
    <% if (user) { %>
      <a href="<%= basePath %>/dashboard" class="btn btn-primary mt-3">Back to dashboard</a>
    <% } else { %>
      <a href="<%= basePath %>/" class="btn btn-primary mt-3">Go to dashboard</a>
    <% } %>
  </div>
</body>
</html>
