blob: 0c5c96d73c30809d0467c82be4d2c9f51b9486d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
- content_for :title, t("sessions.new.page_title")
.row
.span12
%h1=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'
|