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 | |
---|
8 | <h3 i18n:translate="">Student Login</h3> |
---|
9 | |
---|
10 | <form id="" action="" method="post" |
---|
11 | tal:attributes="action string:${base_url}logged_in"> |
---|
12 | |
---|
13 | |
---|
14 | <p> To access the registration portal enter your Student Id and Password. </p> |
---|
15 | |
---|
16 | <p>The <strong>Student Id</strong> (initial capital letter followed by 6 numbers) |
---|
17 | has been automatically assigned by the portal after creation of |
---|
18 | the student record. Do not confuse with your Registration or Matriculation Number! |
---|
19 | </p> |
---|
20 | |
---|
21 | <p>During the admission and clearance process the <strong>Password</strong> corresponds with the last |
---|
22 | 10 digits of your Admission Checking PIN (prefix APP).</p> |
---|
23 | |
---|
24 | <br /> |
---|
25 | |
---|
26 | <table id="login" class="form" |
---|
27 | summary="Table for entering login information"> |
---|
28 | <tbody> |
---|
29 | <tr> |
---|
30 | <th> |
---|
31 | <label for="username" |
---|
32 | i18n:translate="label_student_id">Student Id</label></th> |
---|
33 | <td> |
---|
34 | <input type="text" id="username" name="__ac_name" |
---|
35 | class="focus" size="20" value="" |
---|
36 | tal:attributes="value username" /></td> |
---|
37 | </tr> |
---|
38 | <tr> |
---|
39 | <th> |
---|
40 | <label for="password" |
---|
41 | i18n:translate="label_password">Password</label></th> |
---|
42 | <td> |
---|
43 | <input type="password" id="password" name="__ac_password" size="20" |
---|
44 | value="" /> <font color='red'>Notice: Passwords are case sensitive. </font> </td> |
---|
45 | </tr> |
---|
46 | </tbody> |
---|
47 | </table> |
---|
48 | |
---|
49 | <p class="buttonArea"> |
---|
50 | <!-- ****** Enable the automatic redirect ***** --> |
---|
51 | <input type="hidden" name="came_from" value="" |
---|
52 | tal:condition="exists: request/came_from" |
---|
53 | tal:attributes="value request/came_from" /> |
---|
54 | <!-- ****** Enable the automatic redirect ***** --> |
---|
55 | <input i18n:attributes="value" class="standalone" |
---|
56 | type="submit" name="submit" value="button_login" /> |
---|
57 | </p> |
---|
58 | |
---|
59 | </form> |
---|
60 | |
---|
61 | <br /> |
---|
62 | |
---|
63 | <a href=/retrieve_password>Forgot your Id or Password?</a> |
---|
64 | |
---|
65 | <br /><br /> |
---|
66 | |
---|
67 | <p i18n:translate="help_login_aware_logout"> |
---|
68 | Don't forget to logout or exit your browser when you're done. |
---|
69 | </p> |
---|
70 | <p i18n:translate="help_login_troubles_cookies"> |
---|
71 | Having trouble logging in? Make sure to enable cookies in |
---|
72 | your web browser. |
---|
73 | </p> |
---|
74 | |
---|
75 | </metal:main> |
---|
76 | </metal:body> |
---|
77 | </metal:html> |
---|