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/sessions/new.html.haml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'app/views/auth/sessions/new.html.haml') diff --git a/app/views/auth/sessions/new.html.haml b/app/views/auth/sessions/new.html.haml index 7cfd1cb68..2ca7bf690 100644 --- a/app/views/auth/sessions/new.html.haml +++ b/app/views/auth/sessions/new.html.haml @@ -1,12 +1,11 @@ - content_for :page_title do Log in -= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| - .field - = f.email_field :email, autofocus: true, placeholder: 'E-mail address', required: true - .field - = f.password_field :password, autocomplete: "off", placeholder: 'Password', required: true += simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| + = f.input :email, autofocus: true, placeholder: 'E-mail address', required: true + = f.input :password, placeholder: 'Password', required: true + .actions - = f.button "Log in", type: 'submit' + = f.button :button, "Log in", type: :submit .form-footer= render "auth/shared/links" -- cgit