source: WAeUP_SRP/base/skins/waeup_default/login_staff.pt @ 2210

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

show more text on srp_view and less on login_staff

  • Property svn:keywords set to Id
File size: 1.9 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="" /></td>
37    </tr>
38    </tbody>
39  </table>
40 
41  <p class="buttonArea">
42    <!-- ****** Enable the automatic redirect ***** -->
43    <input type="hidden" name="came_from" value=""
44           tal:condition="exists: request/came_from"
45           tal:attributes="value request/came_from" />
46    <!-- ****** Enable the automatic redirect ***** -->
47    <input i18n:attributes="value" class="standalone"
48           type="submit" name="submit" value="button_login" />
49  </p>
50
51  </form>
52
53  <br />
54
55  <p i18n:translate="help_login_aware_logout">
56    Don't forget to logout or exit your browser when you're done.
57  </p>
58  <p i18n:translate="help_login_troubles_cookies">
59    Having trouble logging in? Make sure to enable cookies in
60    your web browser.
61  </p>
62
63</metal:main>
64</metal:body>
65</metal:html>
Note: See TracBrowser for help on using the repository browser.