2023-09-25 22:48:14 +00:00
|
|
|
{{define "head"}}<title>Reset password — {{.SiteName}}</title>
|
|
|
|
<style>
|
|
|
|
input {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{end}}
|
|
|
|
{{define "content"}}
|
|
|
|
<div class="toosmall content-container clean">
|
|
|
|
<h1>Reset your password</h1>
|
|
|
|
|
2023-10-03 15:15:33 +00:00
|
|
|
{{ if not .EmailEnabled }}
|
|
|
|
<div class="alert info">
|
|
|
|
<p><strong>Email is not configured on this server!</strong> Please <a href="/contact">contact your admin</a> to reset your password.</p>
|
|
|
|
</div>
|
|
|
|
{{ else }}
|
2023-09-25 22:48:14 +00:00
|
|
|
{{if .Flashes}}<ul class="errors">
|
|
|
|
{{range .Flashes}}<li class="urgent">{{.}}</li>{{end}}
|
|
|
|
</ul>{{end}}
|
|
|
|
|
|
|
|
{{if .IsResetting}}
|
|
|
|
<form method="post" action="/reset" onsubmit="disableSubmit()">
|
|
|
|
<label>
|
|
|
|
<p>New Password</p>
|
|
|
|
<input type="password" name="new-pass" autocomplete="new-password" placeholder="New password" tabindex="1" />
|
|
|
|
</label>
|
|
|
|
<input type="hidden" name="t" value="{{.Token}}" />
|
|
|
|
<input type="submit" id="btn-login" value="Reset Password" />
|
2023-10-03 15:15:33 +00:00
|
|
|
{{ .CSRFField }}
|
2023-09-25 22:48:14 +00:00
|
|
|
</form>
|
|
|
|
{{else if not .IsSent}}
|
|
|
|
<form action="/reset" method="post" onsubmit="disableSubmit()">
|
|
|
|
<label>
|
|
|
|
<p>Username</p>
|
|
|
|
<input type="text" name="alias" placeholder="Username" autofocus />
|
|
|
|
</label>
|
|
|
|
{{ .CSRFField }}
|
|
|
|
<input type="submit" id="btn-login" value="Reset Password" />
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
|
2023-10-03 15:15:33 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
var $btn = document.getElementById("btn-login");
|
|
|
|
function disableSubmit() {
|
|
|
|
$btn.disabled = true;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{{ end }}
|
2023-09-25 22:48:14 +00:00
|
|
|
{{end}}
|