new.html.haml 470 B

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