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

Last change on this file since 7307 was 2606, checked in by Henrik Bettermann, 17 years ago

resolve #122

  • Property svn:keywords set to Id
File size: 2.0 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 
16  <br />
17
18  <table id="login" class="form"
19         summary="Table for entering login information">
20    <tbody>
21    <tr>
22    <th>
23        <label for="username"
24               i18n:translate="label_student_id">User Name</label></th>
25    <td>
26        <input type="text" id="username" name="__ac_name"
27               class="focus" size="20" value=""
28               tal:attributes="value username" /></td>
29    </tr>
30    <tr>
31    <th>
32        <label for="password"
33               i18n:translate="label_password">Password</label></th>
34    <td>
35        <input type="password" id="password" name="__ac_password" size="20"
36               value="" /> &nbsp;&nbsp; <font color='red'>Notice: Passwords are case sensitive.  </font>   </td>
37    </tr>
38   
39    </tbody>
40  </table>
41 
42  <p class="buttonArea">
43    <!-- ****** Enable the automatic redirect ***** -->
44    <input type="hidden" name="came_from" value=""
45           tal:condition="exists: request/came_from"
46           tal:attributes="value request/came_from" />   
47    <!-- ****** Enable the automatic redirect ***** -->
48    <input i18n:attributes="value" class="standalone"
49           type="submit" name="submit" value="button_login" />
50           
51     
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
66</metal:main>
67</metal:body>
68</metal:html>
Note: See TracBrowser for help on using the repository browser.