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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/">
  <head>
    <title>Log in</title>
  </head>
  <body>
    <div id="ivle_padding">
      <p>
        Welcome to the Informatics Virtual Learning Environment.
        Please log in to access your files and assessment.
      </p>

      <form class="verticalform thin" action="${path}" method="post">
        <div>
          <label for="field_username">Username:</label>
          <input id="field_username" name="user" type="text" />
        </div>
        <div>
          <label for="field_password">Password:</label>
          <input id="field_password" name="pass" type="password" />
        </div>
        <div class="submit form_error" py:if="defined('error')"
             py:content="error"></div>
        <div class="submit"><input type="submit" value="Log in" /></div>
      </form>
    </div>
  </body>
</html>