new.html.erb 530 B

12345678910111213141516
  1. <h2>Resend confirmation instructions</h2>
  2. <%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %>
  3. <%= devise_error_messages! %>
  4. <div class="field">
  5. <%= f.label :email %><br />
  6. <%= f.email_field :email, autofocus: true, value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %>
  7. </div>
  8. <div class="actions">
  9. <%= f.submit "Resend confirmation instructions" %>
  10. </div>
  11. <% end %>
  12. <%= render "devise/shared/links" %>