diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-18 16:37:15 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-18 16:37:15 +0200 |
commit | 43df35213e80b9b7de69cc80f138882708a05b9b (patch) | |
tree | d3b70597b5172f0daf2b95e6cd4a48a7bc6d7b56 /app/views/auth/sessions | |
parent | 6f7c9774c776afeea0d98cbbd30483f4f0c6b938 (diff) |
Improving all forms
Diffstat (limited to 'app/views/auth/sessions')
-rw-r--r-- | app/views/auth/sessions/new.html.haml | 11 |
1 files changed, 5 insertions, 6 deletions
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" |