new.html.erb 422 B

12345678910111213141516
  1. <h2>Resend unlock instructions</h2>
  2. <%= form_for(resource, as: resource_name, url: unlock_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 %>
  7. </div>
  8. <div class="actions">
  9. <%= f.submit "Resend unlock instructions" %>
  10. </div>
  11. <% end %>
  12. <%= render "devise/shared/links" %>