2014-08-30 18:42:53 +05:30
|
|
|
{{template "ng/base/head" .}}
|
2014-08-10 09:32:00 +05:30
|
|
|
{{template "ng/base/header" .}}
|
|
|
|
<div id="sign-wrapper">
|
2014-09-20 05:41:34 +05:30
|
|
|
<form class="form-align form panel sign-panel sign-form container panel-radius" id="sign-up-form" action="{{AppSubUrl}}/user/forget_password" method="post">
|
2014-04-05 22:02:34 +05:30
|
|
|
{{.CsrfTokenHtml}}
|
2014-08-10 09:32:00 +05:30
|
|
|
<div class="panel-header">
|
|
|
|
<h2>{{.i18n.Tr "auth.forgot_password"}}</h2>
|
2014-04-05 22:02:34 +05:30
|
|
|
</div>
|
2014-08-10 09:32:00 +05:30
|
|
|
<div class="panel-content">
|
|
|
|
{{template "ng/base/alert" .}}
|
|
|
|
{{if .IsResetSent}}
|
|
|
|
<p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p>
|
|
|
|
<hr/>
|
|
|
|
<label></label>
|
|
|
|
<a class="btn btn-green btn-large btn-link btn-radius" href="http://{{Mail2Domain .Email}}">{{.i18n.Tr "auth.sign_in_email"}}</a>
|
|
|
|
{{else if .IsResetRequest}}
|
|
|
|
<div class="field">
|
|
|
|
<label class="req" for="email">{{.i18n.Tr "email"}}</label>
|
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_Email}}ipt-error{{end}}" id="email" name="email" type="email" value="{{.email}}"required/>
|
2014-04-05 22:02:34 +05:30
|
|
|
</div>
|
2014-08-10 09:32:00 +05:30
|
|
|
<hr/>
|
|
|
|
<label></label>
|
|
|
|
<button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "auth.send_reset_mail"}}</button>
|
|
|
|
{{else if .IsResetDisable}}
|
|
|
|
<p>{{.i18n.Tr "auth.disable_register_mail"}}</p>
|
|
|
|
{{else if .ResendLimited}}
|
|
|
|
<p>{{.i18n.Tr "auth.resent_limit_prompt"}}</p>
|
|
|
|
{{end}}
|
2014-04-05 22:02:34 +05:30
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2014-08-10 09:32:00 +05:30
|
|
|
{{template "ng/base/footer" .}}
|