about summary refs log tree commit diff
path: root/app/views/auth/sessions/new.html.haml
blob: 7cfd1cb68be9ccf1d9f0762f2c1be7509cae4065 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
- 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
  .actions
    = f.button "Log in", type: 'submit'

.form-footer= render "auth/shared/links"