genarato alcuni partials e corretto drop down

This commit is contained in:
fabio
2026-02-23 17:09:35 +01:00
parent 3fc01cc4f7
commit 2552b8ad8f
35 changed files with 587 additions and 221 deletions

View File

@@ -0,0 +1,9 @@
{{define "content"}}
<div class="flex min-h-screen items-center justify-center">
<div class="w-full max-w-2xl rounded-lg border border-red-200 bg-white p-8 shadow-sm">
<h1 class="mb-3 text-2xl font-bold text-red-700">Accesso negato</h1>
<p class="mb-6 text-gray-700">Non hai i privilegi necessari per accedere a questa pagina.</p>
<a href="/" class="inline-flex rounded-lg bg-blue-700 px-5 py-2.5 text-sm font-medium text-white hover:bg-blue-800">Torna alla home</a>
</div>
</div>
{{end}}