Remove HTML from login src and add image template
[squirrelmail.git] / templates / default / login.tpl
index 8da056c224cc3d27ca95090e43895ba74c8a0037..ff1718adb1cd84f13254f5a859a07c66cd9793d4 100644 (file)
@@ -4,6 +4,20 @@
  *
  * 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_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 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
  * @version $Id$
 extract($t);
 
 ?>
-<body onLoad="squirrelmail_loginpage_onload()" style="text-align:center">
 <div id="sqm_login">
-<form action="redirect.php" method="post" onSubmit="document.forms[0].js_autodetect_results.value=<?php echo SMPREF_JS_ON; ?>;">
-<?php do_hook('login_top'); ?>
 <table cellspacing="0">
  <tr>
   <td class="sqm_loginTop" colspan="2">
-   <?php 
-       echo $logo_str;
-       echo $sm_attribute_str; 
-   ?>
+   <?php echo $logo_str; if (!empty($logo_str)) echo '<br />'; ?>
+   <?php echo $sm_attribute_str; ?>
   </td>
  </tr>
  <tr>
@@ -38,7 +47,7 @@ extract($t);
    <?php echo _("Name:"); ?>
   </td>
   <td class="sqm_loginFieldInput">
-   <?php echo $login_field; ?>
+   <input type="text" name="login_username" value="<?php echo $login_field_value; ?>" id="login_username" />
   </td>
  </tr>
  <tr>
@@ -46,20 +55,15 @@ extract($t);
    <?php echo _("Password:"); ?>
   </td>
   <td class="sqm_loginFieldInput">
-   <?php 
-       echo $password_field;
-       echo concat_hook_function('login_form')
-   ?>
+   <input type="password" name="secretkey" value="" id="secretkey" />
+   <?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">
-   <?php echo $submit_field; ?>
+   <input type="submit" value="<?php echo _("Login"); ?>" />
   </td>
  </tr>
 </table>
-</form>
-<?php do_hook('login_bottom'); ?>
 </div>
-</body>
-</html>