15 lines
393 B
Text
15 lines
393 B
Text
|
<% if @resource.unconfirmed_email.present? %>
|
||
|
<%= @resource.unconfirmed_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) %>
|