Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_confirmation_instructions_account.text.erb « mailer « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6da78e3a3d3fe18d3ce452ca3deaa41f051dc7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% 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) %>