Login options label placement

Login options label placement

On the little login box, there are no `label` elements used on the two checkboxes ('Keep me signed in' and 'Secure Login'), so you have to click directly on the check box instead of being able to click on the much larger target of the text next to the label. Here is what the current box looks like:
  1. <table cellspacing="0" cellpadding="0" align="left">
  2.   <tbody>
  3.     <tr>
  4.       <td valign="top"><input type="checkbox" name="rem" value="10"></td>
  5.       <td><span class="securetxt">Keep me signed in</span></td>
  6.     </tr>
  7.     <tr>
  8.       <td valign="top"><input type="checkbox" name="sec" id="sec" value="10"></td>
  9.       <td><span class="securetxt">Use Secure Access</span></td> 
  10.     </tr>
  11.   </tbody>
  12. </table>

This is what the code should look like to properly function in all modern browsers. Both checkboxes need a valid `id` and a label that has the `for='validid'` attribute.:
  1. <table cellspacing="0" cellpadding="0" align="left">
  2.   <tbody>
  3.     <tr>
  4.       <td valign="top"><input type="checkbox" name="rem" id="rem-check" value="10"></td>
  5.       <td><label for="rem-check"><span class="securetxt">Keep me signed in</span></label></td>
  6.     </tr>
  7.     <tr>
  8.       <td valign="top"><input type="checkbox" name="sec" id="sec" value="10"></td>
  9.       <td><label for="sec"><span class="securetxt">Use Secure Access</span></label></td> 
  10.     </tr>
  11.   </tbody>
  12. </table>