12 lines
320 B
Go HTML Template
12 lines
320 B
Go HTML Template
|
{{ template "head.tmpl" . }}
|
||
|
<body class="h-screen bg-white dark:bg-gray-900">
|
||
|
{{ template "navbar.tmpl" . }}
|
||
|
<main class="grow">
|
||
|
<div class="place-items-center text-center">
|
||
|
<h1 class="mt-20 text-2xl text-pink-400 font-bold">
|
||
|
You've been logged out.
|
||
|
</h1>
|
||
|
</div>
|
||
|
</main>
|
||
|
{{ template "footer.tmpl" . }}
|