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

confirmation_instructions.html.erb « mailer « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 553d08369e9ff2f160a477474b7761d88816fe56 (plain)
1
2
3
4
5
6
7
8
9
<p>Welcome <%= @resource.name %>!</p>

<% if @resource.unconfirmed_email.present? %>
  <p>You can confirm your email (<%= @resource.unconfirmed_email %>) through the link below:</p>
<% else %>
  <p>You can confirm your account through the link below:</p>
<% end %>

<p><%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @resource.confirmation_token) %></p>