aboutsummaryrefslogtreecommitdiff
path: root/views/login.haml
blob: 06e532039619bdb20e55cb27ddc3b14a7faa113c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
!!! 5
%html
  =partial("head")
  %body
    = partial('navbar')
    .container
      %form{:action => '/login', :method => :POST}
        %fieldset
          %legend Please log in
          %label{:for => "username"} Username
          %input{:name => 'username', :type => 'text', :autocorrect => "off", :autocapitalize => "off"}/
          %br
          %label{:for => "password", :title => "This is either your Single Sign On password or a PIN."} Password / PIN
          %input{:name => 'password', :type => 'password'}/
          %br
          %input{:type => 'hidden', :name => 'next_page', :value => @next_page}/
          %input{:type => 'submit', :value => 'Log in'}/