source: WAeUP_SRP/trunk/skins/waeup_student/apply_pume_form.pt @ 2103

Last change on this file since 2103 was 2103, checked in by joachim, 17 years ago

print slip added

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1<tal:block define="rendered_main options/rendered;
2           portal_status_message options/psm;
3           ds options/ds;
4           jamb options/jamb/getContent|nothing;
5           mode options/mode;
6           "
7           >
8  <metal:block define-macro="edit_form">
9    <metal:block use-macro="here/main_template/macros/master">
10      <metal:block fill-slot="main">
11        <h3>Apply for the Post University Matriculation Examination! </h3>
12        <br />
13        <form action="" id="editForm" method="post"
14              enctype="multipart/form-data" class="workflow"
15              tal:attributes="action string:${context/absolute_url}/apply_pume"
16              >
17          <input type="hidden" name="reg_no"
18                 tal:attributes="value ds/reg_no|nothing"
19                 tal:condition="ds/reg_no|nothing"/>
20          <input type="hidden" name="pin"
21                 tal:attributes="value ds/pin|nothing"
22                 tal:condition="ds/pin|nothing"/>
23          <div tal:replace="structure rendered_main" />
24         
25          <metal:block tal:condition="python: mode=='edit'">
26            <br/>
27            <input type="checkbox" class="standalone"
28                   name="confirm"
29                   value="" />
30              I confirm that the Passport Photograph uploaded on this form is a true picture of me.
31            <br/><br/>
32          </metal:block>
33
34         
35          <input type="submit" class="standalone"
36                 name="edit"
37                 value="Save & Return Later"
38                 tal:condition="python: mode == 'edit'" />
39          <input type="submit" class="standalone" name="apply"
40                 value="Save & Apply"
41                 tal:condition="python: mode == 'edit'"
42                 />
43          <input type="submit"
44                 class="standalone"
45                 name="create"
46                 value="Login for PUME Application"
47                 tal:condition="python: mode == 'create'"
48                 />
49          </form>
50          <metal:block tal:condition="python: mode in ('create','edit')">
51          <p>Instructions :</p>
52          <ul>
53            <li>Enter your JAMB Registration Number and the Application PIN above.</li>
54            <li>Upload your passport picture.</li>
55            <li>Apply for PUME.</li>
56          </ul>
57          </metal:block>
58      </metal:block>
59    </metal:block>
60  </metal:block>
61</tal:block>
Note: See TracBrowser for help on using the repository browser.