aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/password.tmpl
blob: 936ec4b1242b4f11c605d131a25ef878d752f25b (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
33
34
35
36
37
38
39
40
41
42
43
{{template "base/head" .}}
{{template "base/navbar" .}}
<div id="gogs-body" class="container" data-page="user">
    {{template "user/setting_nav" .}}
    <div id="gogs-user-setting-container" class="col-md-9">
        <div id="gogs-setting-pwd">
            <h4>Password</h4>
            <form class="form-horizontal" id="gogs-password-form" method="post" action="/user/setting/password">
            {{.CsrfTokenHtml}}
            {{if .IsSuccess}}
                <p class="alert alert-success">Password is changed successfully. You can now sign in via new password.</p>{{else if .HasError}}<p class="alert alert-danger form-error">{{.ErrorMsg}}</p>{{end}}
                <div class="form-group">
                    <label class="col-md-3 control-label">Old Password<strong class="text-danger">*</strong></label>
                    <div class="col-md-7">
                        <input type="password" name="oldpasswd" class="form-control" placeholder="Type your current password" required="required">
                    </div>
                </div>

                <div class="form-group">
                    <label class="col-md-3 control-label">New Password<strong class="text-danger">*</strong></label>
                    <div class="col-md-7">
                        <input type="password" name="newpasswd" class="form-control" placeholder="Type your new password" required="required">
                    </div>
                </div>

                <div class="form-group">
                    <label class="col-md-3 control-label">Re-Type<strong class="text-danger">*</strong></label>
                    <div class="col-md-7">
                        <input type="password" name="retypepasswd" class="form-control" placeholder="Re-type your new password" required="required">
                    </div>
                </div>

                <div class="form-group">
                    <div class="col-md-offset-3 col-md-7">
                        <button type="submit" class="btn btn-primary">Change Password</button>&nbsp;&nbsp;
                        <a href="/forget-password/">Forgot your password?</a>
                    </div>
                </div>
            </form>
        </div>
    </div>
</div>
{{template "base/footer" .}}