summaryrefslogtreecommitdiff
path: root/app/views/devise/mailer/confirmation_instructions.html.haml
blob: a508b7537a2fb8469886c0b266c62ca41ceea94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- if @resource.unconfirmed_email.present?
  #content
    = email_default_heading(@resource.unconfirmed_email)
    %p Click the link below to confirm your email address.
  #cta
    = link_to 'Confirm your email address', confirmation_url(@resource, confirmation_token: @token)
- 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_url(@resource, confirmation_token: @token)