new.html.haml 355 B

12345678910
  1. %h2 Resend unlock instructions
  2. = form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
  3. = devise_error_messages!
  4. .field
  5. = f.label :email
  6. %br/
  7. = f.email_field :email, autofocus: true, autocomplete: "email"
  8. .actions
  9. = f.submit "Resend unlock instructions"
  10. = render "devise/shared/links"