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 | |
---|
35 | <div tal:condition="view/result" i18n:domain="waeup.kofa"> |
---|
36 | <br /> |
---|
37 | <tal:admitted condition="view/admitted"> |
---|
38 | <p i18n:translate="app_admitted"> |
---|
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>. |
---|
44 | </p> |
---|
45 | </tal:admitted> |
---|
46 | <tal:created condition="view/created"> |
---|
47 | <p i18n:translate="appl_created"> |
---|
48 | Your student record has already been created for you. Your new |
---|
49 | user name (= student id) is: <strong><span i18n:name="student_id" |
---|
50 | tal:replace="view/student_id">STUDENT_ID</span></strong>. |
---|
51 | Your initial password is: <strong><span i18n:name="appl_number" |
---|
52 | tal:replace="view/password">PASSWORD</span></strong>. |
---|
53 | Please proceed to the <a i18n:name="login_url" |
---|
54 | tal:attributes="href python: view.url(layout.site, 'login')">login form</a>, |
---|
55 | enter your new login credentials and change your password immediately after login. |
---|
56 | </p> |
---|
57 | </tal:created> |
---|
58 | |
---|
59 | <tal:notadmitted condition="view/not_admitted"> |
---|
60 | <p i18n:translate=""> |
---|
61 | Sorry, you have not been offered admission. |
---|
62 | </p> |
---|
63 | </tal:notadmitted> |
---|
64 | |
---|
65 | <tal:submitted condition="view/submitted"> |
---|
66 | <p i18n:translate=""> |
---|
67 | Your submitted application is being processed. |
---|
68 | </p> |
---|
69 | </tal:submitted> |
---|
70 | |
---|
71 | <tal:notsubmitted condition="view/not_submitted"> |
---|
72 | <p i18n:translate=""> |
---|
73 | You have not yet submitted your application. |
---|
74 | </p> |
---|
75 | </tal:notsubmitted> |
---|
76 | |
---|
77 | </div> |
---|