gitlab-org--gitlab-foss/app/views/devise/mailer/_confirmation_instructions_...

14 lines
502 B
Plaintext

<% 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) %>