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

_confirmation_instructions_account.html.haml « mailer « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27ef586d90facc2e1fadeee96a0336e4dd3497a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- confirmation_link = confirmation_url(@resource, confirmation_token: @token)
- if @resource.unconfirmed_email.present? || !@resource.created_recently?
  #content
    = email_default_heading(@resource.unconfirmed_email || @resource.email)
    %p Click the link below to confirm your email address.
    #cta
      = link_to 'Confirm your email address', confirmation_link
- else
  #content
    - if Gitlab.com?
      = email_default_heading('Thanks for signing up to GitLab!')
    - else
      = email_default_heading("Welcome, #{@resource.name}!")
    %p To get started, click the link below to confirm your account.
    #cta
      = link_to 'Confirm your account', confirmation_link