11 lines
579 B
HTML
11 lines
579 B
HTML
{{define "content"}}
|
|
<section class="rounded-lg border border-gray-200 bg-white p-8 shadow-sm">
|
|
<h1 class="mb-2 text-3xl font-bold text-gray-900">Trustcontact</h1>
|
|
<p class="mb-6 text-gray-600">Accedi o registrati per continuare.</p>
|
|
<div class="flex flex-wrap gap-3">
|
|
<a class="rounded-lg bg-blue-700 px-5 py-2.5 text-sm font-medium text-white hover:bg-blue-800" href="/login">Accedi</a>
|
|
<a class="rounded-lg border border-gray-300 bg-white px-5 py-2.5 text-sm font-medium text-gray-900 hover:bg-gray-100" href="/signup">Registrati</a>
|
|
</div>
|
|
</section>
|
|
{{end}}
|