source: WAeUP_SRP/trunk/skins/waeup_student/login_student.pt @ 850

Last change on this file since 850 was 805, checked in by joachim, 18 years ago

propset Id

  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
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>  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 
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>
21 
22  <br />
23
24  <table id="login" class="form"
25         summary="Table for entering login information">
26    <tbody>
27    <tr>
28    <th>
29        <label for="username"
30               i18n:translate="label_student_id">Student Id</label></th>
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>
46 
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
59  <br />
60
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>
Note: See TracBrowser for help on using the repository browser.