aboutsummaryrefslogtreecommitdiff
path: root/templates/login.html
blob: 80642ea820d24afd321786d1b7f38bf039826981 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{{define "title"}}Log in{{end}}

{{define "body"}}
<h1>Log in</h1>

<form method="POST">
  <div>{{ .ErrorMessage }}</div>
  Username: <input type="text" name="username" value="{{ .Username }}" /><br />
  Password: <input type="password" name="password" /><br />
  <input type="submit" value="log in">
</form>
{{end}}