saasitone/templates/layouts/auth.gohtml
2021-12-23 19:29:12 -05:00

29 lines
907 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>
{{template "footer"}}
</body>
</html>