edit.html.haml revision 08b16000bc04cebd76e75dcfc2e88231394967f8
%h2 Change your password
= semantic_form_for resource, :url => password_path(resource_name), :method => :put do |f|
= f.hidden_field :reset_password_token
= f.inputs do
= f.input :password, :label => 'New password', :required => false, :input_html => {:required => true, :autofocus => true}
= f.input :password_confirmation, :label => 'Confirm new password', :required => false, :input_html => {:required => true}
= f.actions do
= f.action :submit, :label => "Change my password", :button_html => { :disable_with => t(:wait) }
= render "links"