A website template with lots of features, built with ruby on rails.

new.html.erb 485B

1234567891011121314151617
  1. <h2>Resend confirmation instructions</h2>
  2. <%= simple_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %>
  3. <%= f.error_notification %>
  4. <%= f.full_error :confirmation_token %>
  5. <div class="form-inputs">
  6. <%= f.input :email, required: true, autofocus: true %>
  7. </div>
  8. <div class="form-actions">
  9. <%= f.button :submit, "Resend confirmation instructions" %>
  10. </div>
  11. <% end %>
  12. <%= render "devise/shared/links" %>