comparison website/issues/html/user.register.html @ 4566:b8119ba37707

Merge branch 'website'
author Eric S. Raymond <esr@thyrsus.com>
date Sun, 13 Nov 2011 11:18:42 -0500
parents c2d0d3e9099d
children f63a2b15e628
comparison
equal deleted inserted replaced
4564:6327b1b21593 4566:b8119ba37707
1 <tal:block metal:use-macro="templates/page/macros/icing">
2 <title metal:fill-slot="head_title"
3 i18n:translate="">Registering with <span i18n:name="tracker"
4 tal:replace="db/config/TRACKER_NAME" /></title>
5 <span metal:fill-slot="body_title" tal:omit-tag="python:1"
6 i18n:translate="">Registering with <span i18n:name="tracker"
7 tal:replace="db/config/TRACKER_NAME" /></span>
8 <td class="content" metal:fill-slot="content">
9
10 <p><span style="color:red; font-size:large;">NOTE</span>: If you have previously created or modified issue
11 reports using the sourceforge issue tracker previously used for python
12 bugs, your username on sourceforge already exists in this tracker. Use
13 the <a href="user?@template=forgotten">Password recovery form</a> to
14 get a password for your account.</p>
15
16
17 <form method="POST" onSubmit="return submit_once()"
18 enctype="multipart/form-data"
19 tal:attributes="action context/designator">
20
21 <input type="hidden" name="opaque" tal:attributes="value python: utils.timestamp()" />
22 <table class="form">
23 <tr>
24 <th i18n:translate="">Name</th>
25 <td tal:content="structure context/realname/field">realname</td>
26 </tr>
27 <tr>
28 <th class="required" i18n:translate="">Login Name</th>
29 <td tal:content="structure context/username/field">username</td>
30 </tr>
31 <tr>
32 <th class="required" i18n:translate="">Login Password</th>
33 <td tal:content="structure context/password/field">password</td>
34 </tr>
35 <tr>
36 <th class="required" i18n:translate="">Confirm Password</th>
37 <td tal:content="structure context/password/confirm">password</td>
38 </tr>
39 <tr tal:condition="python:request.user.hasPermission('Web Roles')">
40 <th i18n:translate="">Roles</th>
41 <td tal:condition="exists:item"
42 tal:content="structure context/roles/field">roles</td>
43 <td tal:condition="not:exists:item">
44 <input name="roles" tal:attributes="value db/config/NEW_WEB_USER_ROLES">
45 </td>
46 </tr>
47 <tr>
48 <th i18n:translate="">Phone</th>
49 <td tal:content="structure context/phone/field">phone</td>
50 </tr>
51 <tr>
52 <th i18n:translate="">Organisation</th>
53 <td tal:content="structure context/organisation/field">organisation</td>
54 </tr>
55 <tr>
56 <th class="required" i18n:translate="">E-mail address</th>
57 <td tal:content="structure context/address/field">address</td>
58 </tr>
59 <tr>
60 <th i18n:translate="">Alternate E-mail addresses<br>One address per line</th>
61 <td tal:content="structure context/alternate_addresses/multiline">alternate_addresses</td>
62 </tr>
63
64 <tr>
65 <td>&nbsp;</td>
66 <td>
67 <input type="hidden" name="@template" value="register">
68 <input type="hidden" name="@required" value="username,password,address">
69 <input type="hidden" name="@action" value="register">
70 <input type="submit" name="submit" value="Register" i18n:attributes="value">
71 </td>
72 </tr>
73 </table>
74 </form>
75
76 <tal:block tal:condition="not:context/id" i18n:translate="">
77 <table class="form">
78 <tr>
79 <td>Note:&nbsp;</td>
80 <th class="required">highlighted</th>
81 <td>&nbsp;fields are required.</td>
82 </tr>
83 </table>
84 </tal:block>
85
86 </td>
87
88 </tal:block>

Roundup Issue Tracker: http://roundup-tracker.org/