source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantregister.pt @ 7710

Last change on this file since 7710 was 7710, checked in by Henrik Bettermann, 13 years ago

Backup work in progress

File size: 1.4 KB
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2    i18n:domain="waeup.sirp" enctype="multipart/form-data">
3
4  <table class="form-table">
5    <tbody>
6      <tal:block repeat="widget view/widgets">
7        <tr>
8          <td class="fieldname">
9            <span tal:condition="widget/required">*</span>
10            <span tal:content="widget/label">LABEL</span>:
11          </td>
12          <td>
13            <span tal:content="structure widget">
14              <input type="text" />
15            </span>
16            <tal:error tal:condition="widget/error">
17              <span tal:replace="structure widget/error">ERROR</span>
18            </tal:error>
19            <tal:hint tal:condition="widget/hint">
20              <span tal:content="structure widget/hint">HINT</span>
21            </tal:hint>
22          </td>
23        </tr>
24      </tal:block>
25      <tr tal:condition="view/captcha_code">
26        <td i18n:translate="">
27          Please solve the captcha<br />to prevent misuse of this service:
28        </td>
29        <td>
30          <div tal:content="structure view/captcha_code"></div>
31        </td>
32      </tr>
33
34    </tbody>
35  </table>
36  <p i18n:translate="">
37    An account will be created for you and an email with your login
38    credentials will be sent to the address provided.
39  </p>
40  <div tal:condition="view/availableActions">
41    <input tal:repeat="action view/actions"
42           tal:replace="structure action/render"
43           />
44  </div>
45</form>
Note: See TracBrowser for help on using the repository browser.