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

« back to all changes in this revision

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

  • Committer: David Coles
  • Date: 2010-07-17 11:32:50 UTC
  • Revision ID: coles.david@gmail.com-20100717113250-vi18n50bcjmfmzrt
Show warning for CGI header field-names which contain restricted characters.

Forbidden characters are the separators defined by RFC3875. This is mainly to 
fix an issue where printing a dictionary (with no CGI headers) could be 
assumed to be a CGI header with no warnings.

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>Edit profile - ${context.nick}</title>
 
5
  </head>
 
6
  <body>
 
7
    <h1>Edit profile of ${context.nick}</h1>
 
8
    <div id="ivle_padding">
 
9
      <div class="contextactions">
 
10
        <a py:if="req.user.admin" class="manageaction" href="/~${context.login}/+admin">Administer user</a>
 
11
        <a py:if="context.passhash" class="keyaction" href="/~${context.login}/+changepassword">Change password</a>
 
12
        <a py:if="req.user.admin" class="keyaction" href="/~${context.login}/+resetpassword">Reset password</a>
 
13
      </div>
 
14
      <p>
 
15
        ${context.fullname} (<b>${context.login}</b><py:if test="context.studentid"> / ${context.studentid}</py:if>)
 
16
      </p>
 
17
    
 
18
      <p py:if="context.admin">Privilege: <strong>IVLE administrator</strong></p>
 
19
 
 
20
      <form class="verticalform" action="" method="post">
 
21
        <div>
 
22
          <label for="nick">Display name:</label>
 
23
          <input type="text" name="nick" id="nick" size="40" />
 
24
          <span py:if="'nick' in errors" class="form_error">${errors.nick}</span>
 
25
        </div>
 
26
        <div>
 
27
          <label for="email">Email address:</label>
 
28
          <input type="text" name="email" id="email" size="40" />
 
29
          <span py:if="'email' in errors" class="form_error">${errors.email}</span>
 
30
        </div>
 
31
        <div>
 
32
          <label for="svn_pass">Subversion URL:</label>
 
33
          ${svn_url}
 
34
          <a class="helpaction" href="/+help/Files/Subversion#external" title="What's this?"></a>
 
35
        </div>
 
36
        <div>
 
37
          <label for="svn_pass">Subversion password:</label>
 
38
          <!-- Hidden from view for security reasons -->
 
39
          <span id="svn_pass" style="display: none">${svn_pass}</span>
 
40
          <a id="svn_pass_show" class="fakelink"
 
41
              onclick="$('#svn_pass').show(); $('#svn_pass_show').hide(); $('#svn_pass_hide').show()">(show)</a>
 
42
          <a id="svn_pass_hide" class="fakelink" style="display: none"
 
43
              onclick="$('#svn_pass').hide(); $('#svn_pass_show').show(); $('#svn_pass_hide').hide()">(hide)</a>
 
44
        </div>
 
45
        <div class="submit form_error" py:if="defined('error_value')" py:content="error_value" />
 
46
        <div class="submit"><input type="submit" value="Save" /></div>
 
47
      </form>
 
48
 
 
49
      <h3 py:if="context.pass_exp or context.acct_exp">Notices</h3>
 
50
      <p py:if="context.pass_exp">
 
51
        Your password will expire
 
52
        <span title="${format_datetime(context.pass_exp)}">${format_datetime_short(context.pass_exp)}</span>.
 
53
        You should change it before then to avoid having your account
 
54
        disabled.
 
55
      </p>
 
56
      <p py:if="context.acct_exp">
 
57
        Your IVLE account will expire
 
58
        <span title="${format_datetime(context.acct_exp)}">${format_datetime_short(context.acct_exp)}</span>.
 
59
      </p>
 
60
    </div>
 
61
  </body>
 
62
</html>