nerdhub/hcking

View on GitHub
app/views/users/passwords/edit.html.haml

Summary

Maintainability
Test Coverage
%h2
  = t('sessions.edit.title')

= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
  = display_error_messages!
  = f.hidden_field :reset_password_token
  %div
    = f.label :password, t('sessions.edit.password')
    = f.password_field :password, autofocus: true, autocomplete: "off"
  %div
    = f.label :password_confirmation, t('sessions.edit.password_confirmation')
    = f.password_field :password_confirmation, autocomplete: "off"
  %div= f.submit t('registrations.edit.save_profile'), class: :button