templates for the login page

This commit is contained in:
Lou Knauer
2021-12-08 10:09:47 +01:00
parent 84c5cd47f6
commit 960b0245b2
4 changed files with 111 additions and 0 deletions

10
templates/404.html Normal file
View File

@@ -0,0 +1,10 @@
{{template "base.html" .}}
{{define "content"}}
<div class="row">
<div class="col">
<div class="alert alert-error" role="alert">
404: Not found
</div>
</div>
</div>
{{end}}