diff options
Diffstat (limited to 'templates/user/setting.tmpl')
-rw-r--r-- | templates/user/setting.tmpl | 43 |
1 files changed, 41 insertions, 2 deletions
diff --git a/templates/user/setting.tmpl b/templates/user/setting.tmpl index 380ac88a..edbeeb22 100644 --- a/templates/user/setting.tmpl +++ b/templates/user/setting.tmpl @@ -5,7 +5,7 @@ <h4>Account Setting</h4> <ul class="list-group"> <li class="list-group-item list-group-item-success"><a href="/user/setting">Account Profile</a></li> - <li class="list-group-item"><a href="/user/setting/email_password">Emails and Password</a></li> + <li class="list-group-item"><a href="/user/setting/password">Password</a></li> <li class="list-group-item"><a href="/user/setting/notification">Notifications</a></li> <li class="list-group-item"><a href="/user/setting/ssh/">SSH Keys</a></li> <li class="list-group-item"><a href="/user/setting/security">Security</a></li> @@ -13,7 +13,46 @@ </ul> </div> <div id="gogs-user-setting-container" class="col-md-9"> - setting container + <div id="gogs-setting-pwd"> + <h4>Account Profile</h4> + <form class="form-horizontal" id="gogs-password-form" method="post" action="/user/setting">{{if .IsSuccess}} + <p class="alert alert-success">Your profile has been successfully updated.</p>{{else if .HasError}}<p class="alert alert-danger form-error">{{.ErrorMsg}}</p>{{end}} + <p>Your Email will be public and used for Account related notifications and any web based operations made via the web.</p> + <div class="form-group"> + <label class="col-md-2 control-label">Email</label> + <div class="col-md-8"> + <input type="text" name="email" class="form-control" placeholder="Type your e-mail address" value="{{.Owner.Email}}"> + </div> + </div> + + <div class="form-group"> + <label class="col-md-2 control-label">Website</label> + <div class="col-md-8"> + <input type="text" name="website" class="form-control" placeholder="Type your website URL" value="{{.Owner.Website}}"> + </div> + </div> + + <div class="form-group"> + <label class="col-md-2 control-label">Location</label> + <div class="col-md-8"> + <input type="text" name="location" class="form-control" placeholder="Type your current location" value="{{.Owner.Location}}"> + </div> + </div> + + <div class="form-group"> + <label class="col-md-2 control-label">Gravatar Email<strong class="text-danger">*</strong></label> + <div class="col-md-8"> + <input type="text" name="avatar" class="form-control" placeholder="Type your Gravatar e-mail address" required="required" value="{{.Owner.AvatarEmail}}"> + </div> + </div> + + <div class="form-group"> + <div class="col-md-offset-2 col-md-8"> + <button type="submit" class="btn btn-primary">Update Profile</button> + </div> + </div> + </form> + </div> </div> </div> {{template "base/footer" .}}
\ No newline at end of file |