summaryrefslogtreecommitdiffstats
path: root/templates/user/auth/forgot_passwd.tmpl
blob: a1a1009367370936d906770907bd22f68179e80a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{{template "ng/base/head" .}}
{{template "ng/base/header" .}}
<div id="sign-wrapper">
    <form class="form-align form panel sign-panel sign-form container panel-radius" id="sign-up-form" action="{{AppRootSubUrl}}/user/forget_password" method="post">
        {{.CsrfTokenHtml}}
        <div class="panel-header">
            <h2>{{.i18n.Tr "auth.forgot_password"}}</h2>
        </div>
        <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/>
            </div>
            <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}}
        </div>
    </form>
</div>
{{template "ng/base/footer" .}}