summaryrefslogtreecommitdiff
path: root/users/app/views/sessions/new.html.haml
blob: c91596822f39cadf120f539d1dfe9648a3e2a6a2 (plain)
1
2
3
4
5
6
7
8
9
10
.span1
.span9
  = render :partial => 'users/warnings'
  %h2=t :login
  = simple_form_for @session, :validate => true, :html => { :id => :new_session, :class => 'form-horizontal' } do |f|
    = f.input :login, :required => false, :label => t(:username), :input_html => { :id => :srp_username }
    = f.input :password, :required => false, :input_html => { :id => :srp_password }
    .form-actions
      = f.button :submit, :value => t(:login), :class => 'btn-primary'
      = link_to t(:cancel), root_path, :class => 'btn'