blob: f386a5dd2786fa5319dd5387c8e933d2c7f04647 (
plain)
1
2
3
4
5
6
7
8
|
- content_for :title, t("sessions.new.page_title")
= simple_form_for :sessions, :url => sessions_path do |t|
= t.input :login_data, :label => t('sessions.form.email'), :autofocus => true
= t.input :password, :label => t('sessions.form.password'), :required => false
= t.input :reset_password, :label => t('sessions.form.reset_password'), :as => :boolean
.actions
= t.button :submit, :value => 'Login'
|