debian-mirror-gitlab/app/views/devise/mailer/_confirmation_instructions_account.html.haml
2021-04-29 21:17:54 +05:30

16 lines
725 B
Text

- 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, %{name}!") % { name: @resource.name })
%p= _("To get started, click the link below to confirm your account.")
#cta
= link_to _('Confirm your account'), confirmation_link