~ubuntu-branches/ubuntu/hardy/bugzilla/hardy-security

« back to all changes in this revision

Viewing changes to template/en/default/account/create.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Rémi Perrot
  • Date: 2004-04-02 01:13:32 UTC
  • Revision ID: james.westby@ubuntu.com-20040402011332-hxrg0n2szimd7d25
Tags: upstream-2.16.5
Import upstream version 2.16.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- 1.0@bugzilla.org -->
 
2
[%# The contents of this file are subject to the Mozilla Public
 
3
  # License Version 1.1 (the "License"); you may not use this file
 
4
  # except in compliance with the License. You may obtain a copy of
 
5
  # the License at http://www.mozilla.org/MPL/
 
6
  #
 
7
  # Software distributed under the License is distributed on an "AS
 
8
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
  # implied. See the License for the specific language governing
 
10
  # rights and limitations under the License.
 
11
  #
 
12
  # The Original Code is the Bugzilla Bug Tracking System.
 
13
  #
 
14
  # The Initial Developer of the Original Code is Netscape Communications
 
15
  # Corporation. Portions created by Netscape are
 
16
  # Copyright (C) 1998 Netscape Communications Corporation. All
 
17
  # Rights Reserved.
 
18
  #
 
19
  # Contributor(s): Gervase Markham <gerv@gerv.net>
 
20
  #%]
 
21
 
 
22
[% PROCESS global/header.html.tmpl 
 
23
  title = "Create a new Bugzilla account"
 
24
%]
 
25
 
 
26
<p>
 
27
  To create a Bugzilla account, all that you need to do is to enter a
 
28
  legitimate e-mail address.  The account will be created, and its
 
29
  password will be mailed to you. Optionally you may enter your real name 
 
30
  as well.
 
31
</p>
 
32
 
 
33
<form method="get" action="createaccount.cgi">
 
34
  <table>
 
35
    <tr>
 
36
      <td align="right">
 
37
        <b>E-mail address:</b>
 
38
      </td>
 
39
      <td>
 
40
        <input size="35" name="login">
 
41
        [% Param('emailsuffix') FILTER html %]
 
42
      </td>
 
43
    </tr>
 
44
    
 
45
    <tr>
 
46
      <td align="right">
 
47
        <b>Real name:</b>
 
48
      </td>
 
49
      <td>
 
50
        <input size="35" name="realname">
 
51
      </td>
 
52
    </tr>
 
53
  </table>
 
54
  <br>
 
55
  <input type="submit" value="Create Account">
 
56
</form>
 
57
 
 
58
[% PROCESS global/footer.html.tmpl %]