diff options
Diffstat (limited to 'templates/user/password.tmpl')
-rw-r--r-- | templates/user/password.tmpl | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/templates/user/password.tmpl b/templates/user/password.tmpl new file mode 100644 index 0000000000..b2cdc72d9e --- /dev/null +++ b/templates/user/password.tmpl @@ -0,0 +1,43 @@ +{{template "base/head" .}} +{{template "base/navbar" .}} +<div id="body" class="container" data-page="user"> + {{template "user/setting_nav" .}} + <div id="user-setting-container" class="col-md-9"> + <div id="setting-pwd"> + <h4>Password</h4> + <form class="form-horizontal" id="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> + <a href="/forget-password/">Forgot your password?</a> + </div> + </div> + </form> + </div> + </div> +</div> +{{template "base/footer" .}}
\ No newline at end of file |