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: 5bccb68bbe2dd188f84c2accf5a1b61a36ffaf8a (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, <%= @resource.name %>!
  <% end %>
To get started, use the link below to confirm your account.
<% end %>  

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