docbrown/app/views/devise/mailer/confirmation_instructions.html.erb
Nick Taylor bf2d673492
Created the Forem creator confirmation email template (#14659)
Co-authored-by: Michael Kohl <citizen428@forem.com>
Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com>
2021-10-21 14:56:09 -04:00

9 lines
384 B
Text

<% if @user.creator? %>
<%= render partial: "creator_confirmation_instructions", locals: { url: confirmation_url(@resource, confirmation_token: @token) } %>
<% else %>
<p>Welcome <%= @email %>!</p>
<p>You can confirm your account email through the link below:</p>
<p><%= link_to "Confirm my account", confirmation_url(@resource, confirmation_token: @token) %></p>
<% end %>