Get your own customer support community
 

"Remember Me" label should be clickable to check the box

On the login page, the HTML for the "Remember Me" feature looks like this:


<input id="remember_me_checkbox" name="remember_me" tabindex="3" type="checkbox" value="1" />
<label id="remember_me_label" for="remember_me">Remember Me</label>


Changing for attribute of the label to remember_me_checkbox will make it so that the label text itself is clickable to toggle the associated checkbox:


<input id="remember_me_checkbox" name="remember_me" tabindex="3" type="checkbox" value="1" />
<label id="remember_me_label" for="remember_me_checkbox">Remember Me</label>
 
indifferent I’m clicking in the wrong spot, but shouldn't have to
Inappropriate?
1 person likes this idea

The company implemented this idea.


User_default_medium