2016-06-30 12:42:07 -04:00
|
|
|
= render 'profiles/head'
|
2016-06-28 14:17:29 -04:00
|
|
|
|
2016-02-29 06:37:27 -05:00
|
|
|
= form_for @user, url: profile_path, method: :put, html: { multipart: true, class: "edit-user prepend-top-default" }, authenticity_token: true do |f|
|
2016-04-04 21:25:38 -04:00
|
|
|
= form_errors(@user)
|
|
|
|
|
2012-03-23 19:01:36 -04:00
|
|
|
.row
|
2016-02-29 06:37:27 -05:00
|
|
|
.col-lg-3.profile-settings-sidebar
|
|
|
|
%h4.prepend-top-0
|
|
|
|
Public Avatar
|
|
|
|
%p
|
|
|
|
- if @user.avatar?
|
|
|
|
You can change your avatar here
|
2016-04-30 10:35:10 -04:00
|
|
|
- if gravatar_enabled?
|
2016-02-29 06:37:27 -05:00
|
|
|
or remove the current avatar to revert to #{link_to Gitlab.config.gravatar.host, "http://" + Gitlab.config.gravatar.host}
|
|
|
|
- else
|
|
|
|
You can upload an avatar here
|
2016-04-30 10:35:10 -04:00
|
|
|
- if gravatar_enabled?
|
2016-02-29 06:37:27 -05:00
|
|
|
or change it at #{link_to Gitlab.config.gravatar.host, "http://" + Gitlab.config.gravatar.host}
|
|
|
|
.col-lg-9
|
|
|
|
.clearfix.avatar-image.append-bottom-default
|
2017-03-15 17:21:48 -04:00
|
|
|
= link_to avatar_icon(@user, 400), target: '_blank', rel: 'noopener noreferrer' do
|
2017-01-03 08:51:19 -05:00
|
|
|
= image_tag avatar_icon(@user, 160), alt: '', class: 'avatar s160'
|
2016-02-29 06:37:27 -05:00
|
|
|
%h5.prepend-top-0
|
|
|
|
Upload new avatar
|
|
|
|
.prepend-top-5.append-bottom-10
|
|
|
|
%a.btn.js-choose-user-avatar-button
|
|
|
|
Browse file...
|
|
|
|
%span.avatar-file-name.prepend-left-default.js-avatar-filename No file chosen
|
2016-03-17 15:30:38 -04:00
|
|
|
= f.file_field :avatar, class: "js-user-avatar-input hidden", accept: "image/*"
|
2016-02-29 06:37:27 -05:00
|
|
|
.help-block
|
|
|
|
The maximum file size allowed is 200KB.
|
|
|
|
- if @user.avatar?
|
|
|
|
%hr
|
2016-12-26 05:47:16 -05:00
|
|
|
= link_to 'Remove avatar', profile_avatar_path, data: { confirm: "Avatar will be removed. Are you sure?" }, method: :delete, class: "btn btn-gray"
|
2016-02-29 06:37:27 -05:00
|
|
|
%hr
|
|
|
|
.row
|
|
|
|
.col-lg-3.profile-settings-sidebar
|
|
|
|
%h4.prepend-top-0
|
|
|
|
Main settings
|
|
|
|
%p
|
|
|
|
This information will appear on your profile.
|
|
|
|
- if current_user.ldap_user?
|
|
|
|
Some options are unavailable for LDAP accounts
|
|
|
|
.col-lg-9
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :name, class: "label-light"
|
|
|
|
= f.text_field :name, class: "form-control", required: true
|
|
|
|
%span.help-block Enter your name, so people you know can recognize you.
|
2013-11-27 03:32:37 -05:00
|
|
|
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :email, class: "label-light"
|
|
|
|
- if @user.ldap_user? && @user.ldap_email?
|
|
|
|
= f.text_field :email, class: "form-control", required: true, readonly: true
|
|
|
|
%span.help-block.light
|
|
|
|
Your email address was automatically set based on the LDAP server.
|
|
|
|
- else
|
|
|
|
- if @user.temp_oauth_email?
|
|
|
|
= f.text_field :email, class: "form-control", required: true, value: nil
|
2013-10-15 04:19:19 -04:00
|
|
|
- else
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.text_field :email, class: "form-control", required: true
|
|
|
|
- if @user.unconfirmed_email.present?
|
|
|
|
%span.help-block
|
|
|
|
Please click the link in the confirmation email before continuing. It was sent to
|
|
|
|
= succeed "." do
|
2017-01-13 11:07:21 -05:00
|
|
|
%strong= @user.unconfirmed_email
|
2016-02-29 06:37:27 -05:00
|
|
|
%p
|
|
|
|
= link_to "Resend confirmation e-mail", user_confirmation_path(user: { email: @user.unconfirmed_email }), method: :post
|
2014-04-07 08:14:14 -04:00
|
|
|
|
2016-02-29 06:37:27 -05:00
|
|
|
- else
|
|
|
|
%span.help-block We also use email for avatar detection if no avatar is uploaded.
|
2015-04-13 12:28:49 -04:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :public_email, class: "label-light"
|
2016-12-26 05:47:16 -05:00
|
|
|
= f.select :public_email, options_for_select(@user.all_emails, selected: @user.public_email), { include_blank: 'Do not show on profile' }, class: "select2"
|
2016-02-29 06:37:27 -05:00
|
|
|
%span.help-block This email will be displayed on your public profile.
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :skype, class: "label-light"
|
|
|
|
= f.text_field :skype, class: "form-control"
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :linkedin, class: "label-light"
|
|
|
|
= f.text_field :linkedin, class: "form-control"
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :twitter, class: "label-light"
|
|
|
|
= f.text_field :twitter, class: "form-control"
|
2014-01-18 14:07:00 -05:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :website_url, 'Website', class: "label-light"
|
|
|
|
= f.text_field :website_url, class: "form-control"
|
2015-03-20 19:52:23 -04:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :location, 'Location', class: "label-light"
|
|
|
|
= f.text_field :location, class: "form-control"
|
2016-09-26 12:24:14 -04:00
|
|
|
.form-group
|
|
|
|
= f.label :organization, 'Organization', class: "label-light"
|
|
|
|
= f.text_field :organization, class: "form-control"
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2016-02-29 06:37:27 -05:00
|
|
|
= f.label :bio, class: "label-light"
|
|
|
|
= f.text_area :bio, rows: 4, class: "form-control", maxlength: 250
|
|
|
|
%span.help-block Tell us about yourself in fewer than 250 characters.
|
|
|
|
.prepend-top-default.append-bottom-default
|
|
|
|
= f.submit 'Update profile settings', class: "btn btn-success"
|
|
|
|
= link_to "Cancel", user_path(current_user), class: "btn btn-cancel"
|
2016-03-17 10:48:47 -04:00
|
|
|
|
|
|
|
.modal.modal-profile-crop
|
|
|
|
.modal-dialog
|
|
|
|
.modal-content
|
|
|
|
.modal-header
|
2016-12-26 05:47:16 -05:00
|
|
|
%button.close{ :type => "button", :'data-dismiss' => "modal" }
|
2016-03-17 10:48:47 -04:00
|
|
|
%span
|
|
|
|
×
|
|
|
|
%h4.modal-title
|
|
|
|
Position and size your new avatar
|
|
|
|
.modal-body
|
|
|
|
.profile-crop-image-container
|
2016-12-22 04:30:56 -05:00
|
|
|
%img.modal-profile-crop-image{ alt: "Avatar cropper" }
|
2016-03-17 10:48:47 -04:00
|
|
|
.crop-controls
|
|
|
|
.btn-group
|
|
|
|
%button.btn.btn-primary{ data: { method: "zoom", option: "0.1" } }
|
|
|
|
%span.fa.fa-search-plus
|
|
|
|
%button.btn.btn-primary{ data: { method: "zoom", option: "-0.1" } }
|
|
|
|
%span.fa.fa-search-minus
|
|
|
|
.modal-footer
|
2016-12-26 05:47:16 -05:00
|
|
|
%button.btn.btn-primary.js-upload-user-avatar{ :type => "button" }
|
2016-03-17 10:48:47 -04:00
|
|
|
Set new profile picture
|