~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: 2009-12-06 10:18:20 UTC
  • mto: This revision was merged to the branch mainline in revision 1353.
  • Revision ID: grantw@unimelb.edu.au-20091206101820-d1oogsihfruowjfq
Unbreak project(set) traversals.

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
      <p py:if="defined('error')" class="error">${error}</p>
 
14
 
 
15
      <form action="${path}" method="post">
 
16
        <table>
 
17
          <tr><td>Username:</td><td><input name="user" type="text" /></td></tr>
 
18
          <tr><td>Password:</td><td><input name="pass" type="password" /></td></tr>
 
19
          <tr><td colspan="2"><input type="submit" value="Login" /></td></tr>
 
20
        </table>
 
21
      </form>
 
22
    </div>
 
23
  </body>
 
24
</html>