From 43df35213e80b9b7de69cc80f138882708a05b9b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 18 Oct 2016 16:37:15 +0200 Subject: Improving all forms --- app/views/auth/registrations/new.html.haml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'app/views/auth/registrations/new.html.haml') diff --git a/app/views/auth/registrations/new.html.haml b/app/views/auth/registrations/new.html.haml index 97ab5498e..766cbf1a5 100644 --- a/app/views/auth/registrations/new.html.haml +++ b/app/views/auth/registrations/new.html.haml @@ -1,20 +1,17 @@ - content_for :page_title do Sign up -= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| - = devise_error_messages! += simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| + = render 'shared/error_messages', object: resource - = f.fields_for :account do |ff| - .field - = ff.text_field :username, autofocus: true, placeholder: 'Username', required: true + = f.simple_fields_for :account do |ff| + = ff.input :username, autofocus: true, placeholder: 'Username', required: true + + = f.input :email, placeholder: 'E-mail address', required: true + = f.input :password, autocomplete: "off", placeholder: 'Password', required: true + = f.input :password_confirmation, autocomplete: "off", placeholder: 'Confirm password', required: true - .field - = f.email_field :email, placeholder: 'E-mail address', required: true - .field - = f.password_field :password, autocomplete: "off", placeholder: 'Password', required: true - .field - = f.password_field :password_confirmation, autocomplete: "off", placeholder: 'Confirm password', required: true .actions - = f.button "Sign up", type: 'submit' + = f.button :button, "Sign up", type: :submit .form-footer= render "auth/shared/links" -- cgit