chldapasswd/static/lost.html

13 lines
633 B
HTML
Raw Normal View History

2018-11-12 22:31:10 +00:00
{{template "header"}}
2018-12-30 11:52:34 +00:00
<h1 class="display-4">Forgot your password? <small class="text-muted">We'll send you a link by e-mail to reset it!</small></h1>
2018-11-12 22:31:10 +00:00
2018-12-30 11:52:34 +00:00
<form method="post" action="lost">
{{if .error}}<div class="alert alert-danger" role="alert">{{.error}}</div>{{end}}
<div class="form-group">
<input name="login" required="" class="form-control" id="input_0" type="text" placeholder="Login" autofocus>
</div>
<button class="btn btn-primary" type="submit">Reset my password</button>
<a href="/change" class="btn btn-outline-success">Just want to change your password?</a>
</form>
2018-11-12 22:31:10 +00:00
{{template "footer"}}