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

« back to all changes in this revision

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

  • Committer: matt.giuca
  • Date: 2009-01-12 00:36:24 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1074
Removed "prototypes" directory (very old and clearly no longer used).

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>