Add a few more vars to image handler for later user with templates.
[squirrelmail.git] / templates / default / login.tpl
index ddfc4bc74918a0d3c2dea1a0b7c801e48690e98d..421b1d69e96f24c9e9da58114a5981bfe87d8e5d 100644 (file)
@@ -5,13 +5,18 @@
  * Template to create the login page
  *
  * The following variables are available to this template:
- *      $logo_str   - string containing HTML to display the org logo
+ *      $logo_str           - string containing HTML to display the org logo
+ *      $logo_path          - path to the org logo, in case you want to do
+ *                            something else with it.
  *      $sm_attribute_str   - string containg SQM attributes.  Will be empty if
  *                            this has been disabled by the admin.
  *      $org_name_str       - translated string containing orginization's name
  *      $login_field_value  - default value for the user name field
- *      $login_extra        - Some extra fields needed by SquirrelMail for the 
- *                            login.  YOU SHOULD ALWAYS INCLUDE THIS FIELD!!
+ *      $login_extra        - Some extra form fields needed by SquirrelMail
+ *                            for the login.  Template designers SHOULD ALWAYS
+ *                            INCLUDE this value somewhere in the form.
+ *      $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
@@ -54,10 +59,11 @@ extract($t);
    <?php echo $login_extra; ?>
   </td>
  </tr>
+ <?php if (!empty($plugin_output['login_form'])) echo $plugin_output['login_form']; ?>
  <tr>
   <td class="sqm_loginSubmit" colspan="2">
    <input type="submit" value="<?php echo _("Login"); ?>" />
   </td>
  </tr>
 </table>
-</div>
\ No newline at end of file
+</div>