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

1099.1.120 by William Grant
Move the login machinery to the new framework.
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>