2015-09-17 18:57:24 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user forgot password">
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
2018-03-23 14:10:42 +00:00
|
|
|
<form class="ui form ignore-dirty" action="{{.Link}}" method="post">
|
2015-12-07 22:30:52 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<h2 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "auth.forgot_password_title"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</h2>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{if .IsResetSent}}
|
2024-02-25 14:02:20 +00:00
|
|
|
<p>{{ctx.Locale.Tr "auth.reset_password_mail_sent_prompt" .Email .ResetPwdCodeLives}}</p>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{else if .IsResetRequest}}
|
2024-03-06 14:20:26 +00:00
|
|
|
<div class="required field {{if .Err_Email}}error{{end}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label for="email">{{ctx.Locale.Tr "email"}}</label>
|
2015-12-07 22:30:52 +00:00
|
|
|
<input id="email" name="email" type="email" value="{{.Email}}" autofocus required>
|
|
|
|
</div>
|
2023-06-29 12:24:22 +00:00
|
|
|
<div class="divider"></div>
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="inline field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "auth.send_reset_mail"}}</button>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
|
|
|
{{else if .IsResetDisable}}
|
2021-06-26 04:16:36 +00:00
|
|
|
<p class="center">
|
|
|
|
{{if $.IsAdmin}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "auth.disable_forgot_password_mail_admin"}}
|
2021-06-26 04:16:36 +00:00
|
|
|
{{else}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "auth.disable_forgot_password_mail"}}
|
2021-06-26 04:16:36 +00:00
|
|
|
{{end}}
|
|
|
|
</p>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{else if .ResendLimited}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<p class="center">{{ctx.Locale.Tr "auth.resent_limit_prompt"}}</p>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-05 16:32:34 +00:00
|
|
|
</div>
|
2015-09-17 18:57:24 +00:00
|
|
|
{{template "base/footer" .}}
|