26 lines
1007 B
Go HTML Template
26 lines
1007 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="px-2 md:px-0 place-items-center text-center">
|
|
{{ if .Name -}}
|
|
<h1 class="mt-20 text-2xl text-pink-400 font-bold">
|
|
Welcome, <code>{{.Name}}</code>!<br>
|
|
</h1>
|
|
<div class="mt-8 md:flex md:items-center md:place-items-center md:justify-between">
|
|
<form method="POST" class="w-full md:w-5xl" action="/logout">
|
|
<input type="hidden" name="csrf" value="{{- .CSRF -}}">
|
|
<button
|
|
class="w-full py-3 text-sm font-medium tracking-wide text-white capitalize transition-colors duration-300 transform bg-blue-500 rounded-lg md:w-1/4 hover:bg-blue-400 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-50"
|
|
type="submit">Logout</button>
|
|
</form>
|
|
</div>
|
|
{{- else }}
|
|
<h1 class="mt-20 text-2xl text-pink-400 font-bold">
|
|
Please log in.
|
|
</h1>
|
|
{{- end -}}
|
|
</div>
|
|
</main>
|
|
{{ template "footer.tmpl" . }}
|