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

Last change on this file since 542 was 542, checked in by Henrik Bettermann, 18 years ago

index pages reorganized (part 1)

File size: 2.6 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>This is the frontpage of Uniben's Student Registration Portal (SRP) which is part of the West African e-University Project. For further information see
15  <a href="" tal:attributes="href string:http://waeup.org">waeup.org</a>. </p>
16 
17  <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>
18 
19  <p>Portal Managers can add new Members (create member records) and assign local roles to individual members. Portal
20  Members can browse the various academic or the student sections. They can check, edit and approve Faculty, Department, Certificate,
21  Course and CertificateCourse records, if they got the respective role from a Portal Manager.</p>
22 
23  <br />
24
25  <table id="login" class="form"
26         summary="Table for entering login information">
27    <tbody>
28    <tr>
29    <th>
30        <label for="username"
31               i18n:translate="label_student_id">User Name</label></th>
32    <td>
33        <input type="text" id="username" name="__ac_name"
34               class="focus" size="20" value=""
35               tal:attributes="value username" /></td>
36    </tr>
37    <tr>
38    <th>
39        <label for="password"
40               i18n:translate="label_password">Password</label></th>
41    <td>
42        <input type="password" id="password" name="__ac_password" size="20"
43               value="" /></td>
44    </tr>
45    </tbody>
46  </table>
47 
48  <p class="buttonArea">
49    <!-- ****** Enable the automatic redirect ***** -->
50    <input type="hidden" name="came_from" value=""
51           tal:condition="exists: request/came_from"
52           tal:attributes="value request/came_from" />
53    <!-- ****** Enable the automatic redirect ***** -->
54    <input i18n:attributes="value" class="standalone"
55           type="submit" name="submit" value="button_login" />
56  </p>
57
58  </form>
59
60  <br />
61
62  <p i18n:translate="help_login_aware_logout">
63    Don't forget to logout or exit your browser when you're done.
64  </p>
65  <p i18n:translate="help_login_troubles_cookies">
66    Having trouble logging in? Make sure to enable cookies in
67    your web browser.
68  </p>
69  <p i18n:translate="">
70    help_password_forgotten
71    <tal:block i18n:name="link_password_forgotten"
72               replace="string:${base_url}account_lost_password_form"/>
73  </p>
74
75</metal:main>
76</metal:body>
77</metal:html>
Note: See TracBrowser for help on using the repository browser.