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: 7436da66e63b8e1a9e0e0d1223d74156398fed19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% if @resource.unconfirmed_email.present? || !@resource.created_recently? %>
<%= @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 %>

<%= render_if_exists 'devise/shared/delete_unconfirmed_users_text' %>

<%= confirmation_url(@resource, confirmation_token: @token) %>