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