surtur
6b45213649
All checks were successful
continuous-integration/drone/push Build is passing
* add user onboarding workflow * fix user editing (no edits of passwords of regular users after onboarding) * refresh HIBP breach cache in DB on app start-up * display HIBP breach details * fix request scheduling to prevent panics (this still needs some love..) * fix middleware auth * add TODOs * update head.tmpl * reword some error messages
31 lines
1.1 KiB
Go HTML Template
31 lines
1.1 KiB
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 and .Data .Data.flash }}
|
|
<h1 class="text-xl text-pink-600 dark:text-pink-500 py-2">
|
|
{{ .Data.flash }}
|
|
</h1>
|
|
{{- end }}
|
|
{{ 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" . }}
|