From 495c44445642cfae8f23fadde299ad5307f5be58 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Thu, 9 Jun 2011 18:09:52 +0100 Subject: Big commit --HG-- rename : views/please_authenticate.haml => views/login.haml --- views/login.haml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 views/login.haml (limited to 'views/login.haml') diff --git a/views/login.haml b/views/login.haml new file mode 100644 index 0000000..225c2e8 --- /dev/null +++ b/views/login.haml @@ -0,0 +1,27 @@ +!!! XML +!!! +%html + %head + %meta{:name=>"viewport", :content=>"width=device-width"}/ + %title #{@title}: Authentication required + %link{:rel => "stylesheet", :href => "/stylesheets/bytemark.css"}/ + %link{:rel => "stylesheet", :href => "/stylesheets/mauve.css"}/ + %script{:src => 'javascript/jquery/jquery.js', :type => 'text/javascript'} + %body + = partial('navbar') + %h1 Mauve Alerts + - if flash['error'] + %p.error= flash['error'] + %form{:action => '/login', :method => :POST} + %fieldset + %legend Please log in + %label{:for => "username"} Username + %input{:name => 'username', :type => 'text'}/ + %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'}/ + + -- cgit v1.2.1