~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-02-27 05:07:09 UTC
  • Revision ID: grantw@unimelb.edu.au-20090227050709-k16kvhyl50nzjbwm
Subject URLs now contain the short name (eg. info1) rather than the code
(eg. 600151).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
        Please log in to access your files and assessment.
11
11
      </p>
12
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>
 
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>
25
21
      </form>
26
22
    </div>
27
23
  </body>