Changing the service provider's logo string.
[squirrelmail.git] / templates / default_advanced / login.tpl
CommitLineData
6c026667 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
6f4080b1 14 * $org_logo_str - translated string containing orginization's logo
6c026667 15 * $login_field_value - default value for the user name field
31633bef 16 * $login_extra - Some extra form fields needed by SquirrelMail
17 * for the login. Template designers SHOULD ALWAYS
18 * INCLUDE this value somewhere in the form.
c15e725c 19 * $plugin_output - An array of extra output that may be added by
c53099a2 20 * plugin(s).
c15e725c 21 *
6c026667 22 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
23 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
24 * @version $Id$
25 * @package squirrelmail
26 * @subpackage templates
27 */
28
6c026667 29
30/* retrieve the template vars */
31extract($t);
32
33?>
34<div id="sqm_login">
35<table cellspacing="0">
36 <tr>
37 <td colspan="2">
6a2f6835 38 <?php echo getIcon($icon_theme_path, 'login1.png', '', _("The SquirrelMail logo")); ?>
6c026667 39 </td>
40 </tr>
41 <tr>
42 <td class="orgName" colspan="2">
43 <?php echo $org_name_str; ?>
44 </td>
45 </tr>
46 <tr>
47 <td class="attr" colspan="2">
4d6f5b55 48 <?php echo nl2br($sm_attribute_str) . (empty($sm_attribute_str) ? '' : '<br /><br />'); ?>
6c026667 49 </td>
50 </tr>
51 <tr>
52 <td class="orgLogo">
6f4080b1 53 <img src="<?php echo $logo_path; ?>" width="50" alt="<?php echo $org_logo_str; ?>" />
6c026667 54 </td>
55 <td>
56 <table cellspacing="0">
57 <tr>
58 <td class="fieldName">
59 <?php echo _("Name:"); ?>
60 </td>
61 <td class="fieldInput">
62 <input type="text" name="login_username" value="<?php echo $login_field_value; ?>" id="login_username" class="input" />
63 </td>
64 </tr>
65 <tr>
66 <td class="fieldName">
67 <?php echo _("Password:"); ?>
68 </td>
69 <td class="fieldInput">
70 <input type="password" name="secretkey" value="" id="secretkey" class="input" />
71 <?php echo $login_extra; ?>
72 </td>
73 </tr>
c53099a2 74 <?php if (!empty($plugin_output['login_form'])) echo $plugin_output['login_form']; ?>
6c026667 75 <tr>
76 <td class="loginSubmit" colspan="2">
fe549255 77 <input type="image" src="<?php echo getIconPath($icon_theme_path, 'login_submit.png', _("Login"), _("Login")); ?>" alt="<?php echo _("Login"); ?>" />
6c026667 78 </td>
79 </tr>
80 </table>
81 </td>
82 </tr>
83</table>
3410accc 84</div>