Commit 9f0349ae authored by Jacob Schatz's avatar Jacob Schatz

Merge branch 'email-settings' into 'master'

Emails settings

Closes #13857 

![](https://gitlab.com/gitlab-org/gitlab-ce/uploads/4a87ee4b0abf970c1fbb5e8a8c02740c/email-settings.png)

See merge request !3032
parents f2f35849 29169696
...@@ -93,6 +93,9 @@ $border-red-light: #E52C5A; ...@@ -93,6 +93,9 @@ $border-red-light: #E52C5A;
$border-red-normal: #D22852; $border-red-normal: #D22852;
$border-red-dark: #CA264F; $border-red-dark: #CA264F;
$help-well-bg: #FAFAFA;
$help-well-border: #E5E5E5;
/* header */ /* header */
$light-grey-header: #faf9f9; $light-grey-header: #faf9f9;
......
...@@ -55,6 +55,18 @@ ...@@ -55,6 +55,18 @@
} }
} }
.account-well {
padding: 10px 10px;
background-color: $help-well-bg;
border: 1px solid $help-well-border;
border-radius: $border-radius-base;
ul {
padding-left: 20px;
margin-bottom: 0;
}
}
.calendar-hint { .calendar-hint {
margin-top: -12px; margin-top: -12px;
float: right; float: right;
......
- page_title "Emails" - page_title "Emails"
- header_title page_title, profile_emails_path - header_title page_title, profile_emails_path
.alert.alert-help.prepend-top-default .row.prepend-top-default
%ul .col-lg-3.profile-settings-sidebar
%li %h4.prepend-top-0
Your = page_title
%b Primary Email %p
will be used for avatar detection and web based operations, such as edits and merges. Control emails linked to your account
%li .col-lg-9
Your %h4.prepend-top-0
%b Notification Email Add email address
will be used for account notifications. = form_for 'email', url: profile_emails_path do |f|
%li .form-group
Your = f.label :email, class: 'label-light'
%b Public Email = f.text_field :email, class: 'form-control'
will be displayed on your public profile. .prepend-top-default
%li = f.submit 'Add email address', class: 'btn btn-create'
All email addresses will be used to identify your commits. %hr
%h4.prepend-top-0
.panel.panel-default Linked emails (#{@emails.count + 1})
.panel-heading .account-well.append-bottom-default
Emails (#{@emails.count + 1}) %ul
%ul.well-list#emails-table %li
%li Your Primary Email will be used for avatar detection and web based operations, such as edits and merges.
%strong= @primary %li
%span.label.label-success Primary Email Your Notification Email will be used for account notifications.
- if @primary === current_user.public_email %li
%span.label.label-info Public Email Your Public Email will be displayed on your public profile.
- if @primary === current_user.notification_email %li
%span.label.label-info Notification Email All email addresses will be used to identify your commits.
- @emails.each do |email| %ul.well-list
%li %li
%strong= email.email = @primary
- if email.email === current_user.public_email %span.pull-right
%span.label.label-info Public Email %span.label.label-success Primary Email
- if email.email === current_user.notification_email - if @primary === current_user.public_email
%span.label.label-info Notification Email %span.label.label-info Public Email
%span.cgray - if @primary === current_user.notification_email
added #{time_ago_with_tooltip(email.created_at)} %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-remove pull-right' - @emails.each do |email|
%li
%h4 Add email address = email.email
= form_for 'email', url: profile_emails_path, html: { class: 'form-horizontal' } do |f| %span.pull-right
.form-group - if email.email === current_user.public_email
= f.label :email, class: 'control-label' %span.label.label-info Public Email
.col-sm-10 - if email.email === current_user.notification_email
= f.text_field :email, class: 'form-control' %span.label.label-info Notification Email
.form-actions = link_to 'Remove', profile_email_path(email), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-remove pull-right'
= f.submit 'Add email address', class: 'btn btn-create'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment