Files
stepview/views/error.ejs
T
2026-04-22 15:47:27 -05:00

13 lines
403 B
Plaintext

<%- include('./partials/head', { title: String(status) }) %>
<div class="min-h-screen flex items-center justify-center px-6">
<div class="text-center">
<p class="text-6xl font-bold text-gray-800 mb-4"><%= status %></p>
<p class="text-base text-gray-400 mb-6"><%= message %></p>
<a href="/" class="text-sm text-accent hover:underline">← Go back home</a>
</div>
</div>
</body>
</html>