Allow addition of extra attributes to user/pwd inputs
[squirrelmail.git] / templates / default / login.tpl
index 281a75e66d3b9dc9cef5897b63da6f8f7ba2a53f..b21538164c5c62df688a3c474a579b3c78482ae3 100644 (file)
@@ -18,7 +18,7 @@
  *      $plugin_output      - An array of extra output that may be added by 
  *                            plugin(s).
  * 
- * @copyright © 1999-2006 The SquirrelMail Project Team
+ * @copyright 1999-2011 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -47,19 +47,19 @@ extract($t);
   </td>
  </tr>
  <tr>
-  <td class="sqm_loginFieldName">
+  <td class="sqm_loginFieldName"><label for="login_username">
    <?php echo _("Name:"); ?>
-  </td>
+  </label></td>
   <td class="sqm_loginFieldInput">
-   <input type="text" name="<?php global $username_form_name; echo $username_form_name; ?>" value="<?php echo $login_field_value; ?>" id="login_username" onfocus="alreadyFocused=true;" />
+   <input type="text" name="<?php global $username_form_name; echo $username_form_name; ?>" value="<?php echo $login_field_value; ?>" id="login_username" onfocus="alreadyFocused=true;" <?php global $username_form_extra; echo $username_form_extra; ?> />
   </td>
  </tr>
  <tr>
-  <td class="sqm_loginFieldName">
+  <td class="sqm_loginFieldName"><label for="secretkey">
    <?php echo _("Password:"); ?>
-  </td>
+  </label></td>
   <td class="sqm_loginFieldInput">
-   <input type="password" name="<?php global $password_form_name; echo $password_form_name; ?>" value="" id="secretkey" onfocus="alreadyFocused=true;" />
+   <input type="password" name="<?php global $password_form_name; echo $password_form_name; ?>" value="" id="secretkey" onfocus="alreadyFocused=true;" <?php global $password_form_extra; echo $password_form_extra; ?> />
    <?php echo $login_extra; ?>
   </td>
  </tr>