13 lines
443 B
Text
13 lines
443 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, <%= @resource.name %>!
|
|
<% end %>
|
|
To get started, use the link below to confirm your account.
|
|
<% end %>
|
|
|
|
<%= confirmation_url(@resource, confirmation_token: @token) %>
|