Implement login flow

This commit is contained in:
Jan Dittberner 2020-12-30 19:31:10 +01:00
parent 027ed72fdc
commit c0e9e88dba
7 changed files with 624 additions and 95 deletions

10
templates/base.html Normal file
View file

@ -0,0 +1,10 @@
{{ define "base" }}
<!DOCTYPE html>
<html lang="en">
<head><title>{{ .Title }}</title></head>
<body>
<h1>{{ .Title }}</h1>
{{ template "content" . }}
</body>
</html>
{{ end }}