~ubuntu-branches/ubuntu/hardy/gallery2/hardy-security

« back to all changes in this revision

Viewing changes to upgrade/templates/AuthenticateRequest.html

  • Committer: Bazaar Package Importer
  • Author(s): Michael C. Schultheiss
  • Date: 2006-04-16 16:42:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060416164235-8uy0u4bfjdxpge2o
Tags: 2.1.1-1
* New upstream release (Closes: #362936)
  + Bugfixes for Postgres7 (Closes: #359000, #362152)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
    <?php if (!empty($templateData['error']['password'])): ?>
 
2
      <div class="error">
 
3
        <h2><?php print $templateData['error']['password']; ?></h2>
 
4
      </div>
 
5
    <?php endif; ?>
 
6
 
1
7
    <h1><?php print _('Authenticate') ?></h1>
 
8
 
2
9
    <p>
3
10
      <?php print _("In order to proceed with the install, we have to verify that you are who you claim.  When you performed the install, you entered a password which went into your config.php.  Type that in now.  Refer to your config.php if you've forgotten what you entered."); ?>
4
11
    </p>
15
22
            <script type="text/javascript">document.forms[0]['password'].focus();</script>
16
23
          </td>
17
24
        </tr>
18
 
 
19
 
        <?php if (!empty($templateData['error']['password'])): ?>
20
 
        <tr>
21
 
          <td colspan="2" class="error">
22
 
            <?php print $templateData['error']['password']; ?>
23
 
          </td>
24
 
        </tr>
25
 
        <?php endif; ?>
26
25
      </table>
27
26
    </form>
28
27
 
29
28
    <div class="go">
30
 
      <span class="goToNext">
31
 
        <a href="javascript:document.forms[0].submit()">
32
 
          <?php print _('Authenticate Me') ?>
33
 
        </a>
34
 
      </span>
 
29
          <div class="btn btn-continue"><span><span><span><span>
 
30
        <a href="javascript:document.forms[0].submit()"><?php print _('Authenticate Me') ?></a>
 
31
          </span></span></span></span></div>
35
32
    </div>