~ubuntu-branches/ubuntu/raring/trac-accountmanager/raring

« back to all changes in this revision

Viewing changes to acct_mgr/templates/verify_email.html

  • Committer: Package Import Robot
  • Author(s): Leo Costela
  • Date: 2012-06-30 20:40:10 UTC
  • mfrom: (1.1.4)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: package-import@ubuntu.com-20120630204010-xyoy9dnabof4jsbo
* new upstream checkout (closes: #654292)
* convert to dh short style and "--with python2"
* bump dh compat to 9
* update watch file for new version (0.3.2 based on setup.py; no 
  official release)
* move packaging to git (dump old out-of-sync history)
* debian/control: bump policy to 3.9.3 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
4
<html xmlns="http://www.w3.org/1999/xhtml"
5
5
      xmlns:py="http://genshi.edgewall.org/"
6
 
      xmlns:xi="http://www.w3.org/2001/XInclude">
 
6
      xmlns:xi="http://www.w3.org/2001/XInclude" 
 
7
      xmlns:i18n="http://genshi.edgewall.org/i18n"
 
8
      i18n:domain="acct_mgr">
7
9
  <xi:include href="layout.html" />
 
10
  <?python
 
11
    if _dgettext is not None:
 
12
        dgettext = _dgettext ?>
8
13
  <head>
9
14
    <title>Verify Email</title>
10
15
    <script type="text/javascript">
15
20
  </head>
16
21
 
17
22
  <body>
18
 
    <div id="content" class="login">
 
23
    <div id="content" class="verify_email">
19
24
 
20
25
      <h1>Verify Email</h1>
21
26
      
22
 
      <p class="help">An email was sent to $req.session.email with a token to
23
 
      verify your new address.  Please check your email and enter the token
24
 
      in the form below.</p>
25
 
      <p>You can <a href="${href.prefs()}">change your email address</a> if it
26
 
      is incorrect.</p>
 
27
      <p class="help" i18n:msg="email">An email was sent to
 
28
        $req.session.email with a token to verify your new address.
 
29
        Please check your email and enter the token in the form below.</p>
 
30
      <p i18n:msg="">You can <a href="${href.prefs()}">change your
 
31
        email address</a>, if it is incorrect.</p>
27
32
 
28
33
      <form method="post" action="" id="acctmgr_verify_email">
29
34
        <div>
31
36
          <input type="text" id="token" name="token" class="textwidget"
32
37
                 size="10" value="${value_of('token')}" />
33
38
        </div>
34
 
        <input type="submit" name="verify" value="Verify" />
35
 
        <input type="submit" name="resend" value="Resend Email" />
 
39
        <div class="button central nav buttons">
 
40
          <input type="submit" name="verify" py:attrs="button_state"
 
41
                 value="${dgettext('acct_mgr', 'Verify')}" />
 
42
          <input type="submit" name="resend" py:attrs="button_state"
 
43
                 value="${dgettext('acct_mgr', 'Resend Email')}" />
 
44
        </div>
36
45
      </form>
37
46
 
38
47
    </div>