Allow template sets to filter or completely change header delivery
[squirrelmail.git] / templates / default / login.tpl
1 <?php
2 /**
3 * login.tpl
4 *
5 * Template to create the login page
6 *
7 * The following variables are available to this template:
8 * $logo_str - string containing HTML to display the org logo
9 * $logo_path - path to the org logo, in case you want to do
10 * something else with it.
11 * $sm_attribute_str - string containg SQM attributes. Will be empty if
12 * this has been disabled by the admin.
13 * $org_name_str - translated string containing orginization's name
14 * $login_field_value - default value for the user name field
15 * $login_extra - Some extra form fields needed by SquirrelMail
16 * for the login. Template designers SHOULD ALWAYS
17 * INCLUDE this value somewhere in the form.
18 * $plugin_output - An array of extra output that may be added by
19 * plugin(s).
20 *
21 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
22 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
23 * @version $Id$
24 * @package squirrelmail
25 * @subpackage templates
26 */
27
28 /* retrieve the template vars */
29 extract($t);
30
31 ?>
32 <div id="sqm_login">
33 <table cellspacing="0">
34 <tr>
35 <td class="sqm_loginTop" colspan="2">
36 <?php echo $logo_str; if (!empty($logo_str)) echo '<br />'; ?>
37 <?php echo $sm_attribute_str; ?>
38 </td>
39 </tr>
40 <tr>
41 <td class="sqm_loginOrgName" colspan="2">
42 <?php echo $org_name_str; ?>
43 </td>
44 </tr>
45 <tr>
46 <td class="sqm_loginFieldName">
47 <?php echo _("Name:"); ?>
48 </td>
49 <td class="sqm_loginFieldInput">
50 <input type="text" name="login_username" value="<?php echo $login_field_value; ?>" id="login_username" />
51 </td>
52 </tr>
53 <tr>
54 <td class="sqm_loginFieldName">
55 <?php echo _("Password:"); ?>
56 </td>
57 <td class="sqm_loginFieldInput">
58 <input type="password" name="secretkey" value="" id="secretkey" />
59 <?php echo $login_extra; ?>
60 </td>
61 </tr>
62 <?php if (!empty($plugin_output['login_form'])) echo $plugin_output['login_form']; ?>
63 <tr>
64 <td class="sqm_loginSubmit" colspan="2">
65 <input type="submit" value="<?php echo _("Login"); ?>" />
66 </td>
67 </tr>
68 </table>
69 </div>