Correcting login stylesheet since changes to template class.
[squirrelmail.git] / templates / default_advanced / login.tpl
index 5f2a0d852ea5a6b2ea1b372ce251bbacd92c21a0..d7f966a3d27feee61af1ade9d479e3c1087ca024 100644 (file)
@@ -15,7 +15,8 @@
  *      $login_extra        - Some extra form fields needed by SquirrelMail
  *                            for the login.  Template designers SHOULD ALWAYS
  *                            INCLUDE this value somewhere in the form.
- *      $plugin_extra       - Extra table row(s) that may be added by plugin(s).
+ *      $plugin_output      - An array of extra output that may be added by 
+ *                            plugin(s).
  * 
  * @copyright © 1999-2006 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
@@ -35,7 +36,7 @@ extract($t);
 <table cellspacing="0">
  <tr>
   <td colspan="2">
-   <?php echo getIcon($icon_theme_path, 'login1.png', _("Login"), _("Login")); ?>
+   <?php echo getIcon($icon_theme_path, 'login1.png', ''); ?>
   </td>
  </tr>
  <tr>
@@ -71,10 +72,10 @@ extract($t);
       <?php echo $login_extra; ?>
      </td>
     </tr>
-    <?php echo $plugin_extra; ?>
+    <?php if (!empty($plugin_output['login_form'])) echo $plugin_output['login_form']; ?>
     <tr>
      <td class="loginSubmit" colspan="2">
-      <input type="image" src="<?php echo getIconPath($icon_theme_path, 'login_submit.png'); ?>" alt="<?php echo _("Login"); ?>" />
+      <input type="image" src="<?php echo getIconPath($icon_theme_path, 'login_submit.png', _("Login"), _("Login")); ?>" alt="<?php echo _("Login"); ?>" />
      </td>
     </tr>
    </table>