source: WAeUP_SRP/trunk/skins/waeup_default/login_staff.pt @ 807

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

propset Id

  • Property svn:keywords set to Id
File size: 2.4 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="">Staff Login</h3>
9
10  <form id="" action="" method="post"
11        tal:attributes="action string:${base_url}logged_in">
12 
13  <p>You've chosen the portal's 'back entrance' to log in. This entrance is dedicated to university staff members to maintain the portal's database.</p>
14 
15  <p>Portal Managers can add new Members (create member records) and assign local roles to individual members. Portal
16  Members can browse the various academic or the student sections. They can check, edit and approve Faculty, Department, Certificate,
17  Course and CertificateCourse records, if they got the respective role from a Portal Manager.</p>
18 
19  <br />
20
21  <table id="login" class="form"
22         summary="Table for entering login information">
23    <tbody>
24    <tr>
25    <th>
26        <label for="username"
27               i18n:translate="label_student_id">User Name</label></th>
28    <td>
29        <input type="text" id="username" name="__ac_name"
30               class="focus" size="20" value=""
31               tal:attributes="value username" /></td>
32    </tr>
33    <tr>
34    <th>
35        <label for="password"
36               i18n:translate="label_password">Password</label></th>
37    <td>
38        <input type="password" id="password" name="__ac_password" size="20"
39               value="" /></td>
40    </tr>
41    </tbody>
42  </table>
43 
44  <p class="buttonArea">
45    <!-- ****** Enable the automatic redirect ***** -->
46    <input type="hidden" name="came_from" value=""
47           tal:condition="exists: request/came_from"
48           tal:attributes="value request/came_from" />
49    <!-- ****** Enable the automatic redirect ***** -->
50    <input i18n:attributes="value" class="standalone"
51           type="submit" name="submit" value="button_login" />
52  </p>
53
54  </form>
55
56  <br />
57
58  <p i18n:translate="help_login_aware_logout">
59    Don't forget to logout or exit your browser when you're done.
60  </p>
61  <p i18n:translate="help_login_troubles_cookies">
62    Having trouble logging in? Make sure to enable cookies in
63    your web browser.
64  </p>
65  <p i18n:translate="">
66    help_password_forgotten
67    <tal:block i18n:name="link_password_forgotten"
68               replace="string:${base_url}account_lost_password_form"/>
69  </p>
70
71</metal:main>
72</metal:body>
73</metal:html>
Note: See TracBrowser for help on using the repository browser.