From 6045b6cb1880b27e8b21799b9501a794a5f5b88b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 5 Mar 2016 22:43:05 +0100 Subject: Customizing devise views and controllers --- app/views/auth/registrations/edit.html.haml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app/views/auth/registrations/edit.html.haml (limited to 'app/views/auth/registrations/edit.html.haml') diff --git a/app/views/auth/registrations/edit.html.haml b/app/views/auth/registrations/edit.html.haml new file mode 100644 index 000000000..943230b34 --- /dev/null +++ b/app/views/auth/registrations/edit.html.haml @@ -0,0 +1,11 @@ += form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| + = devise_error_messages! + + .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' + .actions + = f.button "Save changes", type: 'submit' -- cgit