1 | <form method="post" enctype="multipart/form-data" tal:condition="not:view/result"> |
---|
2 | <br /> |
---|
3 | <table class="form-table"> |
---|
4 | <tr> |
---|
5 | <td i18n:translate="" class="fieldname"> |
---|
6 | Registration Number or Applicant Id: |
---|
7 | </td> |
---|
8 | <td> |
---|
9 | <input class="textType half" type="text" name="unique_id" /> |
---|
10 | </td> |
---|
11 | </tr> |
---|
12 | <tr> |
---|
13 | <td i18n:translate="" class="fieldname"> |
---|
14 | Lastname (Surname): |
---|
15 | </td> |
---|
16 | <td> |
---|
17 | <input class="textType half" type="text" name="lastname" /> |
---|
18 | </td> |
---|
19 | </tr> |
---|
20 | <tr tal:condition="view/captcha_code"> |
---|
21 | <td i18n:translate=""> |
---|
22 | Please solve the captcha<br />to prevent misuse of this service: |
---|
23 | </td> |
---|
24 | <td> |
---|
25 | <div tal:content="structure view/captcha_code"></div> |
---|
26 | </td> |
---|
27 | </tr> |
---|
28 | </table> |
---|
29 | <br /> |
---|
30 | <input class="btn btn-primary" type="submit" name="SUBMIT" |
---|
31 | tal:attributes="value view/buttonname" /> |
---|
32 | </form> |
---|
33 | |
---|
34 | <div tal:condition="view/result"> |
---|
35 | |
---|
36 | <br /> |
---|
37 | |
---|
38 | <tal:admitted condition="view/admitted"> |
---|
39 | <p i18n:translate=""> |
---|
40 | <strong>Congratulations!</strong> You have been offered provisional |
---|
41 | admission into the <span i18n:name="entry_session" tal:replace="view/entry_session"></span> |
---|
42 | Academic Session of <span i18n:name="app_title" tal:replace="layout/getAppTitle"></span>. |
---|
43 | </p> |
---|
44 | <span tal:condition="view/course_admitted"> |
---|
45 | <table class="form-table"> |
---|
46 | <tr> |
---|
47 | <td style="width: 150px;" i18n:translate="">Study Course: |
---|
48 | </td> |
---|
49 | <td><span tal:replace="view/longtitle"></span> |
---|
50 | </td> |
---|
51 | </tr> |
---|
52 | <tr> |
---|
53 | <td i18n:translate=""> Department: |
---|
54 | </td> |
---|
55 | <td><span tal:replace="view/department"></span> |
---|
56 | </td> |
---|
57 | </tr> |
---|
58 | <tr> |
---|
59 | <td i18n:translate="">Faculty: |
---|
60 | </td> |
---|
61 | <td><span tal:replace="view/faculty"></span> |
---|
62 | </td> |
---|
63 | </tr> |
---|
64 | </table> |
---|
65 | </span> |
---|
66 | </tal:admitted> |
---|
67 | |
---|
68 | <tal:created condition="view/created"> |
---|
69 | <br /> |
---|
70 | <p i18n:translate=""> |
---|
71 | Your student record has already been created for you. Your new |
---|
72 | user name (= student id) is: <strong><span i18n:name="student_id" |
---|
73 | tal:replace="view/student_id">STUDENT_ID</span></strong>. |
---|
74 | Your initial password is: <strong><span i18n:name="password" |
---|
75 | tal:replace="view/password">PASSWORD</span></strong>. |
---|
76 | Please proceed to the <a i18n:name="login_url" |
---|
77 | tal:attributes="href python: view.url(layout.site, 'login')">login form</a>, |
---|
78 | enter your new login credentials and change your password immediately after login. |
---|
79 | </p> |
---|
80 | </tal:created> |
---|
81 | |
---|
82 | <tal:notadmitted condition="view/not_admitted"> |
---|
83 | <p i18n:translate=""> |
---|
84 | Sorry, you have not been offered admission. |
---|
85 | </p> |
---|
86 | </tal:notadmitted> |
---|
87 | |
---|
88 | <tal:submitted condition="view/submitted"> |
---|
89 | <p i18n:translate=""> |
---|
90 | Your submitted application is being processed. |
---|
91 | </p> |
---|
92 | </tal:submitted> |
---|
93 | |
---|
94 | <tal:notsubmitted condition="view/not_submitted"> |
---|
95 | <p i18n:translate=""> |
---|
96 | You have not yet submitted your application. |
---|
97 | </p> |
---|
98 | </tal:notsubmitted> |
---|
99 | |
---|
100 | </div> |
---|