mastodon/app/views/auth/sessions/new.html.haml

12 lines
469 B
Plaintext
Raw Normal View History

- content_for :page_title do
Log in
2016-10-18 14:37:15 +00:00
= simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
2016-11-03 18:19:39 +00:00
= f.input :email, autofocus: true, placeholder: 'E-mail address', required: true, input_html: { 'aria-label' => 'E-mail address' }
= f.input :password, placeholder: 'Password', required: true, input_html: { 'aria-label' => 'Password' }
2016-10-18 14:37:15 +00:00
.actions
2016-10-18 14:37:15 +00:00
= f.button :button, "Log in", type: :submit
.form-footer= render "auth/shared/links"