1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-01-12 04:23:16 +02:00
authboss/internal/render/templates/recover.html.tpl

9 lines
771 B
Smarty
Raw Normal View History

<form action="{{mountpathed "recover"}}" method="POST">
2015-02-24 01:51:42 +02:00
<input type="text" name="{{.primaryID}}" placeholder="{{title .primaryID}}" value="{{.primaryIDValue}}" /><br />
{{$pid := .primaryID}}{{with .errs}}{{with $errlist := index . $pid}}{{range $errlist}}<span>{{.}}</span><br />{{end}}{{end}}{{end}}
<input type="text" name="confirm_{{.primaryID}}" placeholder="Confirm {{title .primaryID}}" value="{{.confirmPrimaryIDValue}}" /><br />
{{$cpid := .primaryID | printf "confirm_%s"}}{{with .errs}}{{with $errlist := index . $cpid}}{{range $errlist}}<span>{{.}}</span><br />{{end}}{{end}}{{end}}
<input type="hidden" name="{{.xsrfName}}" value="{{.xsrfToken}}" />
<button type="submit">Recover</button><br />
2015-02-21 21:07:32 +02:00
<a href="/login">Cancel</a>
2015-02-24 01:51:42 +02:00
</form>