aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/forgot_passwd.tmpl
blob: ff25406fd0d2b152942fff7eeb37c7d2513f3e49 (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
{{template "base/head" .}}
{{template "base/navbar" .}}
<div id="body" class="container">
    <form action="/user/forget_password" method="post" class="form-horizontal card" id="login-card">
        {{.CsrfTokenHtml}}
        <h3>Reset Your Password</h3>
        <div class="alert alert-danger form-error{{if .HasError}}{{else}} hidden{{end}}">{{.ErrorMsg}}</div>
        {{if .IsResetSent}}
        <p>A confirmation e-mail has been sent to <b>{{.Email}}</b>, please check your inbox within {{.Hours}} hours.</p>
        <hr/>
        <a href="http://{{Mail2Domain .Email}}" class="btn btn-lg btn-success">Sign in to your e-mail</a>
        {{else if .IsResetRequest}}
        <div class="form-group {{if .Err_Email}}has-error has-feedback{{end}}">
            <label class="col-md-3 control-label">Email: </label>
            <div class="col-md-7">
                <input name="email" class="form-control" placeholder="Type your e-mail address" required="required">
            </div>
        </div>
        <hr/>
        <div class="form-group">
            <div class="col-md-offset-4 col-md-6">
                <button type="submit" class="btn btn-lg btn-primary">Click here to send reset confirmation e-mail</button>
            </div>
        </div>
        {{else if .IsResetDisable}}
        <p>Sorry, mail service is not enabled.</p>
        {{end}}
    </form>
</div>
{{template "base/footer" .}}