Welcome to mirror list, hosted at ThFree Co, Russian Federation.

provisioned_member_access_granted_email.haml « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f2fd33145a9c0bace1b5265099fb1910b8ee6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- source_link = link_to(member_source.human_name, member_source.web_url, target: '_blank', rel: 'noopener noreferrer', class: :highlight)
- confirmation_link = confirmation_url(@user, confirmation_token: @user.confirmation_token)

%tr
  %td.text-content
    %p
      = _('An Enterprise User GitLab account has been created for you by your organization:')
    %p
      = _('Username: %{username}') % { username: @user.username }
      %br
      = _('Email: %{email}') % { email: @user.email }
      %br
      = _('GitLab group: %{source_link}').html_safe % { source_link: source_link }

%tr
  %td.text-content
    %p
      = _('By authenticating with an account tied to an Enterprise e-mail address, it is understood that this account is an Enterprise User. ')
      = _('To ensure no loss of personal content, an Individual User should create a separate account under their own personal email address, not tied to the Enterprise email domain or name-space.')
    - unless @user.confirmed?
      %p
        = _('To get started, click the link below to confirm your account.')
      %p
        = link_to 'Confirm your account', confirmation_link