Co-authored-by: Michael Kohl <citizen428@forem.com> Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com>
9 lines
384 B
Text
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 %>
|