[13422] | 1 | <form method="post" enctype="multipart/form-data" |
---|
| 2 | tal:condition="not:view/result" i18n:domain="waeup.kofa"> |
---|
| 3 | <br /> |
---|
| 4 | <table class="form-table"> |
---|
| 5 | <tr> |
---|
| 6 | <td i18n:translate="" class="fieldname"> |
---|
| 7 | Registration Number or Applicant Id: |
---|
| 8 | </td> |
---|
| 9 | <td> |
---|
| 10 | <input class="textType half" type="text" name="unique_id" /> |
---|
| 11 | </td> |
---|
| 12 | </tr> |
---|
| 13 | <tr> |
---|
| 14 | <td i18n:translate="" class="fieldname"> |
---|
| 15 | Lastname (Surname): |
---|
| 16 | </td> |
---|
| 17 | <td> |
---|
| 18 | <input class="textType half" type="text" name="lastname" /> |
---|
| 19 | </td> |
---|
| 20 | </tr> |
---|
| 21 | <tr tal:condition="view/captcha_code"> |
---|
| 22 | <td i18n:translate=""> |
---|
| 23 | Please solve the captcha<br />to prevent misuse of this service: |
---|
| 24 | </td> |
---|
| 25 | <td> |
---|
| 26 | <div tal:content="structure view/captcha_code"></div> |
---|
| 27 | </td> |
---|
| 28 | </tr> |
---|
| 29 | </table> |
---|
| 30 | <br /> |
---|
| 31 | <input class="btn btn-primary" type="submit" name="SUBMIT" |
---|
| 32 | tal:attributes="value view/buttonname" /> |
---|
| 33 | </form> |
---|
| 34 | |
---|
[15570] | 35 | <p tal:condition="view/result" i18n:domain="waeup.kofa"> |
---|
[13422] | 36 | <br /> |
---|
| 37 | <tal:admitted condition="view/admitted"> |
---|
[15570] | 38 | <span i18n:translate="app_admitted"> |
---|
[13422] | 39 | <strong>Congratulations <span tal:replace="view/applicant/display_fullname"></span></strong> |
---|
| 40 | <br /><br /> |
---|
| 41 | You have been offered provisional |
---|
| 42 | admission into the <span i18n:name="entry_session" tal:replace="view/entry_session"></span> |
---|
| 43 | Academic Session of <span i18n:name="app_title" tal:replace="layout/getAppTitle"></span>. |
---|
[15570] | 44 | </span> |
---|
[13422] | 45 | </tal:admitted> |
---|
| 46 | <tal:created condition="view/created"> |
---|
[15570] | 47 | <span i18n:translate="appl_created"> |
---|
| 48 | Your student record has been created. |
---|
| 49 | <br /><br /> |
---|
| 50 | Proceed to the <a i18n:name="login_url" |
---|
| 51 | tal:attributes="href python: view.url(layout.site, 'login')">login form</a>, |
---|
| 52 | enter your new login credentials and change your password immediately after login. |
---|
| 53 | Your new user name i.e. student id is: <strong><span i18n:name="student_id" |
---|
[13422] | 54 | tal:replace="view/student_id">STUDENT_ID</span></strong>. |
---|
| 55 | Your initial password is: <strong><span i18n:name="appl_number" |
---|
| 56 | tal:replace="view/password">PASSWORD</span></strong>. |
---|
[15570] | 57 | <br /><br /> |
---|
| 58 | Please you are expected to pay your acceptance fee to |
---|
| 59 | start your online clearance process. |
---|
| 60 | <br /><br /> |
---|
| 61 | Thank you. |
---|
| 62 | </span> |
---|
[13422] | 63 | </tal:created> |
---|
| 64 | |
---|
| 65 | <tal:notadmitted condition="view/not_admitted"> |
---|
[15570] | 66 | <span i18n:translate=""> |
---|
[13422] | 67 | Sorry, you have not been offered admission. |
---|
[15570] | 68 | </span> |
---|
[13422] | 69 | </tal:notadmitted> |
---|
| 70 | |
---|
| 71 | <tal:submitted condition="view/submitted"> |
---|
[15570] | 72 | <span i18n:translate=""> |
---|
[13422] | 73 | Your submitted application is being processed. |
---|
[15570] | 74 | </span> |
---|
[13422] | 75 | </tal:submitted> |
---|
| 76 | |
---|
| 77 | <tal:notsubmitted condition="view/not_submitted"> |
---|
[15570] | 78 | <span i18n:translate=""> |
---|
[13422] | 79 | You have not yet submitted your application. |
---|
[15570] | 80 | </span> |
---|
[13422] | 81 | </tal:notsubmitted> |
---|
| 82 | |
---|
[15570] | 83 | </p> |
---|