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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/user-password-reset.html

  • Committer: William Grant
  • Date: 2009-12-02 05:13:18 UTC
  • mfrom: (1328 trunk)
  • mto: This revision was merged to the branch mainline in revision 1353.
  • Revision ID: grantw@unimelb.edu.au-20091202051318-delr1lu69zri05gz
MergeĀ fromĀ trunk.

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>Reset password - ${user.nick}</title>
 
5
  </head>
 
6
  <body>
 
7
    <h1>Reset password for ${user.nick}</h1>
 
8
    <div id="ivle_padding">
 
9
      <p>
 
10
        This page lets administrators reset any user's password, without
 
11
        knowledge of that password. Be very careful.
 
12
      </p>
 
13
      <p py:if="not user.passhash">
 
14
        <strong>Warning:</strong> This user currently has no IVLE password
 
15
        set. This probably means that their password is checked against
 
16
        another password database. Setting a new one will override any
 
17
        external database.
 
18
      </p>
 
19
      <form class="verticalform" action="" method="post">
 
20
        <div>
 
21
          <label for="field_new_password">New password:</label>
 
22
          <input type="password" name="new_password" id="field_new_password" size="40" />
 
23
        </div>
 
24
        <div>
 
25
          <label for="field_new_password_again">New password (again):</label>
 
26
          <input type="password" name="new_password_again" id="field_new_password_again" size="40" />
 
27
        </div>
 
28
          
 
29
        <p py:if="error" py:content="error" />
 
30
        <p><input type="submit" value="Reset password" /></p>
 
31
      </form>
 
32
    </div>
 
33
  </body>
 
34
</html>