[503] | 1 | <metal:html> |
---|
| 2 | |
---|
| 3 | <metal:body use-macro="here/main_template/macros/master"> |
---|
| 4 | |
---|
| 5 | <metal:main fill-slot="main" |
---|
| 6 | tal:define="username request/username | request/__ac_name | nothing"> |
---|
| 7 | |
---|
[509] | 8 | <h3 i18n:translate="">Student Login</h3> |
---|
[503] | 9 | |
---|
[509] | 10 | <form id="" action="" method="post" |
---|
[503] | 11 | tal:attributes="action string:${base_url}logged_in"> |
---|
[509] | 12 | |
---|
[503] | 13 | |
---|
[509] | 14 | <p> To access the registration portal enter your Student Id and Password. </p> |
---|
| 15 | |
---|
| 16 | <p>The <strong>Student Id</strong> has been automatically assigned by the portal after creation of |
---|
| 17 | the student record. Do not confuse with your Registration or Matriculation Number!</p> |
---|
| 18 | |
---|
[783] | 19 | <p>During the admission and clearance process the <strong>Password</strong> corresponds with the last |
---|
| 20 | 10 digits of your Access Card PIN.</p> |
---|
[509] | 21 | |
---|
| 22 | <br /> |
---|
| 23 | |
---|
[503] | 24 | <table id="login" class="form" |
---|
| 25 | summary="Table for entering login information"> |
---|
| 26 | <tbody> |
---|
| 27 | <tr> |
---|
| 28 | <th> |
---|
| 29 | <label for="username" |
---|
[509] | 30 | i18n:translate="label_student_id">Student Id</label></th> |
---|
[503] | 31 | <td> |
---|
| 32 | <input type="text" id="username" name="__ac_name" |
---|
| 33 | class="focus" size="20" value="" |
---|
| 34 | tal:attributes="value username" /></td> |
---|
| 35 | </tr> |
---|
| 36 | <tr> |
---|
| 37 | <th> |
---|
| 38 | <label for="password" |
---|
| 39 | i18n:translate="label_password">Password</label></th> |
---|
| 40 | <td> |
---|
| 41 | <input type="password" id="password" name="__ac_password" size="20" |
---|
| 42 | value="" /></td> |
---|
| 43 | </tr> |
---|
| 44 | </tbody> |
---|
| 45 | </table> |
---|
[509] | 46 | |
---|
[503] | 47 | <p class="buttonArea"> |
---|
| 48 | <!-- ****** Enable the automatic redirect ***** --> |
---|
| 49 | <input type="hidden" name="came_from" value="" |
---|
| 50 | tal:condition="exists: request/came_from" |
---|
| 51 | tal:attributes="value request/came_from" /> |
---|
| 52 | <!-- ****** Enable the automatic redirect ***** --> |
---|
| 53 | <input i18n:attributes="value" class="standalone" |
---|
| 54 | type="submit" name="submit" value="button_login" /> |
---|
| 55 | </p> |
---|
| 56 | |
---|
| 57 | </form> |
---|
| 58 | |
---|
[509] | 59 | <br /> |
---|
| 60 | |
---|
[503] | 61 | <p i18n:translate="help_login_aware_logout"> |
---|
| 62 | Don't forget to logout or exit your browser when you're done. |
---|
| 63 | </p> |
---|
| 64 | <p i18n:translate="help_login_troubles_cookies"> |
---|
| 65 | Having trouble logging in? Make sure to enable cookies in |
---|
| 66 | your web browser. |
---|
| 67 | </p> |
---|
| 68 | |
---|
| 69 | </metal:main> |
---|
| 70 | </metal:body> |
---|
| 71 | </metal:html> |
---|