Inital commit

This commit is contained in:
2022-02-24 01:07:09 +13:00
commit 8bc3cee328
55 changed files with 2292 additions and 0 deletions

3
views/static/home.gtpl Normal file
View File

@@ -0,0 +1,3 @@
{{define "content"}}
{{end}}

13
views/static/login.gtpl Normal file
View File

@@ -0,0 +1,13 @@
{{define "content"}}
<h1>Login</h1>
{{.Err}}
<form action="/login" method="post">
<div>Username or Email</div>
<input type="text" name="email">
<div>Password</div>
<input type="password" name="password">
<br>
<button type="submit">Login</button>
</form>
{{end}}