saasitone/templates/layouts/auth.gohtml
2021-12-14 11:30:31 -05:00

27 lines
876 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
{{template "metatags" .}}
{{template "css" .}}
{{template "js" .}}
</head>
<body>
<section class="hero is-info is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<div class="column is-half">
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
<div class="box">
{{template "messages" .}}
{{template "content" .}}
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>