2016-11-02 06:35:21 -04:00
|
|
|
= form_for(resource, as: resource_name, url: session_path(resource_name), html: { class: 'new_user gl-show-field-errors', 'aria-live' => 'assertive'}) do |f|
|
2016-09-09 08:21:00 -04:00
|
|
|
%div.form-group
|
|
|
|
= f.label "Username or email", for: :login
|
|
|
|
= f.text_field :login, class: "form-control top", autofocus: "autofocus", autocapitalize: "off", autocorrect: "off", required: true, title: "This field is required."
|
|
|
|
%div.form-group
|
|
|
|
= f.label :password
|
|
|
|
= f.password_field :password, class: "form-control bottom", required: true, title: "This field is required."
|
2013-05-24 12:43:47 -04:00
|
|
|
- if devise_mapping.rememberable?
|
2015-02-19 18:02:49 -05:00
|
|
|
.remember-me.checkbox
|
|
|
|
%label{for: "user_remember_me"}
|
2013-05-24 12:43:47 -04:00
|
|
|
= f.check_box :remember_me
|
|
|
|
%span Remember me
|
2016-10-22 15:20:13 -04:00
|
|
|
.pull-right.forgot-password
|
2015-02-19 18:02:49 -05:00
|
|
|
= link_to "Forgot your password?", new_password_path(resource_name)
|
2016-11-17 14:14:56 -05:00
|
|
|
%div.submit-container.move-submit-down
|
|
|
|
= f.submit "Sign in", class: "btn btn-save"
|