All checks were successful
continuous-integration/drone/push Build is passing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
875 B
HTML
19 lines
875 B
HTML
{{template "header" .}}
|
|
<h1 class="page-title">Forgot your password?</h1>
|
|
<p class="page-subtitle">We'll send you a link by e-mail to reset it!</p>
|
|
|
|
<form method="post" action="lost">
|
|
{{if .error}}<div class="alert alert-error" role="alert">{{.error}}</div>{{end}}
|
|
<input type="hidden" name="csrf_token" value="{{ .csrf_token }}">
|
|
<div class="form-field">
|
|
<input name="login" required="" class="form-control" id="input_0" type="text" placeholder="Login" autofocus autocomplete="username">
|
|
</div>
|
|
<div class="form-field">
|
|
<altcha-widget challengeurl="altcha-challenge"></altcha-widget>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn btn-primary" type="submit">Reset my password</button>
|
|
<a href="/change" class="btn btn-secondary">Just want to change your password?</a>
|
|
</div>
|
|
</form>
|
|
{{template "footer" .}}
|