Remove HTML from login src and add image template
[squirrelmail.git] / templates / default / login.tpl
index 010ab15d35618d622b4df6c62d3572e9913dabdc..ff1718adb1cd84f13254f5a859a07c66cd9793d4 100644 (file)
  *                            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
@@ -30,7 +33,7 @@ extract($t);
 <table cellspacing="0">
  <tr>
   <td class="sqm_loginTop" colspan="2">
-   <?php echo $logo_str; ?>
+   <?php echo $logo_str; if (!empty($logo_str)) echo '<br />'; ?>
    <?php echo $sm_attribute_str; ?>
   </td>
  </tr>
@@ -56,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>