mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-23 08:47:53 -05:00
16 lines
618 B
Plaintext
16 lines
618 B
Plaintext
= form_for(resource, as: resource_name,
|
|
url: registration_path(resource_name) + '#delete',
|
|
html: { method: :delete, class: 'form-horizontal' }) do |f|
|
|
%br/
|
|
= render 'devise/shared/error_messages', resource: resource
|
|
|
|
%p Delete your account from #{ENV['GROWSTUFF_SITE_NAME']}.
|
|
.form-group
|
|
= f.label :current_password, "Password required to delete", class: 'control-label col-md-2'
|
|
.col-md-4
|
|
= f.password_field :current_password, class: 'form-control', id: 'current_pw_for_delete'
|
|
|
|
.form-group
|
|
.form-actions.col-md-offset-2.col-md-8
|
|
= f.submit "Delete", class: 'btn btn-danger'
|