13 lines
502 B
Text
13 lines
502 B
Text
<% if @resource.unconfirmed_email.present? || !@resource.created_recently? %>
|
|
<%= @resource.unconfirmed_email || @resource.email %>,
|
|
<%= _('Use the link below to confirm your email address.') %>
|
|
<% else %>
|
|
<% if Gitlab.com? %>
|
|
<%= _('Thanks for signing up to GitLab!') %>
|
|
<% else %>
|
|
<%= _("Welcome, %{name}!") % { name: @resource.name } %>
|
|
<% end %>
|
|
<%= _('To get started, use the link below to confirm your account.') %>
|
|
<% end %>
|
|
|
|
<%= confirmation_url(@resource, confirmation_token: @token) %>
|