10 lines
505 B
HTML
10 lines
505 B
HTML
{{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}}
|