974f9fb135
Closes #20918
50 lines
1.9 KiB
Text
50 lines
1.9 KiB
Text
- page_title "Emails"
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
|
= render 'profiles/head'
|
|
|
|
.row.prepend-top-default
|
|
.col-lg-4.profile-settings-sidebar
|
|
%h4.prepend-top-0
|
|
= page_title
|
|
%p
|
|
Control emails linked to your account
|
|
.col-lg-8
|
|
%h4.prepend-top-0
|
|
Add email address
|
|
= form_for 'email', url: profile_emails_path do |f|
|
|
.form-group
|
|
= f.label :email, class: 'label-light'
|
|
= f.text_field :email, class: 'form-control'
|
|
.prepend-top-default
|
|
= f.submit 'Add email address', class: 'btn btn-create'
|
|
%hr
|
|
%h4.prepend-top-0
|
|
Linked emails (#{@emails.count + 1})
|
|
.account-well.append-bottom-default
|
|
%ul
|
|
%li
|
|
Your Primary Email will be used for avatar detection and web based operations, such as edits and merges.
|
|
%li
|
|
Your Notification Email will be used for account notifications.
|
|
%li
|
|
Your Public Email will be displayed on your public profile.
|
|
%li
|
|
All email addresses will be used to identify your commits.
|
|
%ul.well-list
|
|
%li
|
|
= @primary
|
|
%span.pull-right
|
|
%span.label.label-success Primary email
|
|
- if @primary === current_user.public_email
|
|
%span.label.label-info Public email
|
|
- if @primary === current_user.notification_email
|
|
%span.label.label-info Notification email
|
|
- @emails.each do |email|
|
|
%li
|
|
= email.email
|
|
%span.pull-right
|
|
- if email.email === current_user.public_email
|
|
%span.label.label-info Public email
|
|
- if email.email === current_user.notification_email
|
|
%span.label.label-info Notification email
|
|
= link_to 'Remove', profile_email_path(email), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-warning prepend-left-10'
|