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

confirmation_instructions.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: d4bfb3af76fd5ff96dc67af5fe84e0500040db17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% if @resource.is_a?(Email) %>
<%= render partial: 'confirmation_instructions_secondary' %>
<% else %>
Welcome, <%= @resource.name %>!

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

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