blob: 27dda6d5075381b9f9622a85b8f3f21cee0a46a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{define "title"}}Reset Password{{end}}
{{define "content"}}
{{if .Success}}
<div class="success">{{.Success}}</div>
{{else}}
{{if .Error}}
<div class="error">{{.Error}}</div>
{{end}}
<form action="/forgotpw" method="post" accept-charset="UTF-8">
<p><strong>E-Mail:</strong> <input type="text" name="Mail" /></p>
<p><input type="submit" /></p>
</form>
{{end}}
{{end}}
|