2014-03-10 09:54:52 +01:00
{{ template "base/head" . }}
{{ template "base/navbar" . }}
2014-03-17 08:17:44 +01:00
< div id = "gogs-body" class = "container" data-page = "user" >
2014-03-18 23:31:54 +01:00
{{ template "user/setting_nav" . }}
2014-03-10 09:54:52 +01:00
< div id = "gogs-user-setting-container" class = "col-md-9" >
2014-03-14 06:12:07 +01:00
< div id = "gogs-setting-pwd" >
< h4 > Account Profile< / h4 >
2014-03-21 11:15:58 +01:00
< form class = "form-horizontal" id = "gogs-password-form" method = "post" action = "/user/setting" >
2014-03-22 18:44:02 +01:00
{{ .CsrfTokenHtml }}
2014-03-21 11:15:58 +01:00
{{ 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 }}
2014-03-14 06:12:07 +01:00
< 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 >
2014-03-21 11:15:58 +01:00
< div class = "form-group {{ if .Err_Avatar }} has-error has-feedback {{ end }} " >
2014-03-14 06:12:07 +01:00
< 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 >
2014-03-10 09:54:52 +01:00
< / div >
< / div >
{{ template "base/footer" . }}