Files
at-container-registry/pkg/hold/admin/templates/pages/error.html
T

25 lines
714 B
HTML

{{define "pages/error.html"}}
<!DOCTYPE html>
<html lang="en">
<head>
{{template "admin-head"}}
<title>Error - Hold Admin</title>
</head>
<body class="min-h-screen flex flex-col bg-base-200">
{{template "nav" .}}
<main class="flex-1 max-w-7xl w-full mx-auto p-6">
<div class="text-center py-16">
<h1 class="text-2xl font-bold mb-4">Error</h1>
<p class="text-error text-lg mb-6">{{.Error}}</p>
<a href="/admin" class="btn btn-primary">Back to Dashboard</a>
</div>
</main>
<footer class="text-center p-6 text-base-content/50 text-sm">
<p>Hold: <code class="font-mono">{{.HoldDID}}</code></p>
</footer>
</body>
</html>
{{end}}