mastodon/app/views/auth/registrations/edit.html.haml

20 lines
666 B
Plaintext
Raw Normal View History

- content_for :page_title do
Change password
= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f|
= devise_error_messages!
.field
= f.email_field :email, placeholder: 'E-mail address'
.field
= f.password_field :password, autocomplete: "off", placeholder: 'New password'
.field
= f.password_field :password_confirmation, autocomplete: "off", placeholder: 'Confirm new password'
.field
= f.password_field :current_password, autocomplete: "off", placeholder: 'Current password'
2016-10-14 00:28:49 +00:00
.actions
= f.button "Save changes", type: 'submit'
2016-10-14 00:28:49 +00:00
.form-footer= render "settings/shared/links"