2015-09-18 00:27:24 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content user forgot password">
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
2018-03-23 19:40:42 +05:30
|
|
|
<form class="ui form ignore-dirty" action="{{.Link}}" method="post">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<h2 class="ui top attached header">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "auth.forgot_password_title"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</h2>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{if .IsResetSent}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<p>{{.locale.Tr "auth.reset_password_mail_sent_prompt" (Escape .Email) .ResetPwdCodeLives | Str2html}}</p>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else if .IsResetRequest}}
|
|
|
|
<div class="required inline field {{if .Err_Email}}error{{end}}">
|
2022-06-28 02:28:46 +05:30
|
|
|
<label for="email">{{.locale.Tr "email"}}</label>
|
2015-12-08 04:00:52 +05:30
|
|
|
<input id="email" name="email" type="email" value="{{.Email}}" autofocus required>
|
|
|
|
</div>
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
2022-06-28 02:28:46 +05:30
|
|
|
<button class="ui primary button">{{.locale.Tr "auth.send_reset_mail"}}</button>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
{{else if .IsResetDisable}}
|
2021-06-26 09:46:36 +05:30
|
|
|
<p class="center">
|
|
|
|
{{if $.IsAdmin}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "auth.disable_forgot_password_mail_admin"}}
|
2021-06-26 09:46:36 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "auth.disable_forgot_password_mail"}}
|
2021-06-26 09:46:36 +05:30
|
|
|
{{end}}
|
|
|
|
</p>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else if .ResendLimited}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<p class="center">{{.locale.Tr "auth.resent_limit_prompt"}}</p>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-05 22:02:34 +05:30
|
|
|
</div>
|
2015-09-18 00:27:24 +05:30
|
|
|
{{template "base/footer" .}}
|