stevegrossi/stevegrossi

View on GitHub
app/views/devise/passwords/new.html.slim

Summary

Maintainability
Test Coverage
h2 Forgot your password?

= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
  = f.error_notification

  div.form-inputs
    = f.input :email, required: true, autofocus: true

  div.form-actions
    = f.button :submit, "Send me reset password instructions"

= render "devise/shared/links"