[542] | 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 | |
---|
[543] | 8 | <h3 i18n:translate="">Staff Login</h3> |
---|
[542] | 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 | |
---|
[1826] | 15 | |
---|
[542] | 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" |
---|
[2606] | 36 | value="" /> <font color='red'>Notice: Passwords are case sensitive. </font> </td> |
---|
[542] | 37 | </tr> |
---|
[2606] | 38 | |
---|
[542] | 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" |
---|
[2606] | 46 | tal:attributes="value request/came_from" /> |
---|
[542] | 47 | <!-- ****** Enable the automatic redirect ***** --> |
---|
| 48 | <input i18n:attributes="value" class="standalone" |
---|
| 49 | type="submit" name="submit" value="button_login" /> |
---|
[2606] | 50 | |
---|
| 51 | |
---|
[542] | 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 |
---|
[2606] | 63 | your web browser. |
---|
[542] | 64 | </p> |
---|
| 65 | |
---|
| 66 | </metal:main> |
---|
| 67 | </metal:body> |
---|
| 68 | </metal:html> |
---|