~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/security/login.html

  • Committer: William Grant
  • Date: 2010-02-11 08:36:15 UTC
  • Revision ID: grantw@unimelb.edu.au-20100211083615-5imzir7px5dblvwk
divify the login form, fixing up the submit/error indentation while there.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html xmlns="http://www.w3.org/1999/xhtml"
 
2
      xmlns:py="http://genshi.edgewall.org/">
 
3
  <head>
 
4
    <title>Log in</title>
 
5
  </head>
 
6
  <body>
 
7
    <div id="ivle_padding">
 
8
      <p>
 
9
        Welcome to the Informatics Virtual Learning Environment.
 
10
        Please log in to access your files and assessment.
 
11
      </p>
 
12
 
 
13
      <form class="verticalform thin" action="${path}" method="post">
 
14
        <div>
 
15
          <label for="field_username">Username:</label>
 
16
          <input id="field_username" name="user" type="text" />
 
17
        </div>
 
18
        <div>
 
19
          <label for="field_password">Password:</label>
 
20
          <input id="field_password" name="pass" type="password" />
 
21
        </div>
 
22
        <div class="submit form_error" py:if="defined('error')"
 
23
             py:content="error"></div>
 
24
        <div class="submit"><input type="submit" value="Login" /></div>
 
25
      </form>
 
26
    </div>
 
27
  </body>
 
28
</html>