debian-mirror-gitlab/app/views/devise/mailer/_confirmation_instructions_account.text.erb

14 lines
502 B
Text
Raw Normal View History

2020-07-28 23:09:34 +05:30
<% if @resource.unconfirmed_email.present? || !@resource.created_recently? %>
<%= @resource.unconfirmed_email || @resource.email %>,
2021-04-29 21:17:54 +05:30
<%= _('Use the link below to confirm your email address.') %>
2018-03-17 18:26:18 +05:30
<% else %>
<% if Gitlab.com? %>
2021-04-29 21:17:54 +05:30
<%= _('Thanks for signing up to GitLab!') %>
2018-03-17 18:26:18 +05:30
<% else %>
2021-04-29 21:17:54 +05:30
<%= _("Welcome, %{name}!") % { name: @resource.name } %>
2018-03-17 18:26:18 +05:30
<% end %>
2021-04-29 21:17:54 +05:30
<%= _('To get started, use the link below to confirm your account.') %>
<% end %>
2018-03-17 18:26:18 +05:30
<%= confirmation_url(@resource, confirmation_token: @token) %>