blob: 085f5cf9ed935d72eb09cc6e3f8e656715aa7c3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{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="/pwreset?Code={{.Code}}&U={{.UID}}" method="post" accept-charset="UTF-8">
<p><strong>Password:</strong> <input type="password" name="Password" /></p>
<p><strong>Retype Password:</strong> <input type="password" name="PasswordAgain" /></p>
<p><input type="submit" /></p>
</form>
{{end}}
{{end}}
|