blob: 75dd3de173daa18c963b32d7f0de02283424c70c (
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
.form-actions
= t.button :submit, :value => 'Login'
|