diff options
author | lpsolit%gmail.com <> | 2006-08-22 04:19:09 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-08-22 04:19:09 +0000 |
commit | cfbe7958a0559bc20edfa939320646457a35e21b (patch) | |
tree | b8d38c5d7cb142b7d3e17a8ca1ab8ad5b58440f1 | |
parent | 23d260a3178402d13df57cc94b7216bd5fb54e0a (diff) | |
download | bugs-cfbe7958a0559bc20edfa939320646457a35e21b.tar bugs-cfbe7958a0559bc20edfa939320646457a35e21b.tar.gz bugs-cfbe7958a0559bc20edfa939320646457a35e21b.tar.bz2 bugs-cfbe7958a0559bc20edfa939320646457a35e21b.tar.xz bugs-cfbe7958a0559bc20edfa939320646457a35e21b.zip |
Bug 314501: Use <label>'s on the login form - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=myk
-rw-r--r-- | template/en/default/account/auth/login-small.html.tmpl | 28 | ||||
-rw-r--r-- | template/en/default/account/auth/login.html.tmpl | 30 |
2 files changed, 24 insertions, 34 deletions
diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl index 621f65ff0..5a70742f1 100644 --- a/template/en/default/account/auth/login-small.html.tmpl +++ b/template/en/default/account/auth/login-small.html.tmpl @@ -36,39 +36,37 @@ <form name="login" action="[% script_name FILTER html %]" method="POST"> <table> <tr> - <td align="right"><b>Login:</b></td> - <td><input size="20" name="Bugzilla_login"> + <th align="right"><label for="Bugzilla_login">Login:</label></th> + <td><input size="20" id="Bugzilla_login" name="Bugzilla_login"> [% Param('emailsuffix') FILTER html %]</td> </tr> <tr> - <td align="right"><b>Password:</b></td> - <td><input type="password" size="20" name="Bugzilla_password"></td> + <th align="right"><label for="Bugzilla_password">Password:</label></th> + <td> + <input type="password" size="20" id="Bugzilla_password" name="Bugzilla_password"> + </td> </tr> [% IF Param('rememberlogin') == 'defaulton' || Param('rememberlogin') == 'defaultoff' %] <tr> - <td> </td> + <th> </th> <td> - <input type="checkbox" name="Bugzilla_remember" value="on" + <input type="checkbox" id="Bugzilla_remember" name="Bugzilla_remember" value="on" [% "checked" IF Param('rememberlogin') == "defaulton" %]> - Remember my Login + <label for="Bugzilla_remember">Remember my Login</label> </td> </tr> [% END %] [% IF Param('loginnetmask') < 32 %] <tr> - <td align="right"> - <b> - Restrict this session<br> - to this IP address: - </b> - </td> + <th> </th> <td> - <input type="checkbox" name="Bugzilla_restrictlogin" + <input type="checkbox" id="Bugzilla_restrictlogin" name="Bugzilla_restrictlogin" checked="checked"> - (Using this option improves security) + <label for="Bugzilla_restrictlogin">Restrict this session to this IP address + (using this option improves security)</label> </td> </tr> [% END %] diff --git a/template/en/default/account/auth/login.html.tmpl b/template/en/default/account/auth/login.html.tmpl index 56d0612d6..15ec4a477 100644 --- a/template/en/default/account/auth/login.html.tmpl +++ b/template/en/default/account/auth/login.html.tmpl @@ -38,47 +38,39 @@ <form name="login" action="[% target FILTER html %]" method="POST"> <table> <tr> - <td align="right"> - <b>Login:</b> - </td> + <th align="right"><label for="Bugzilla_login">Login:</label></th> <td> - <input size="35" name="Bugzilla_login"> + <input size="35" id="Bugzilla_login" name="Bugzilla_login"> [% Param('emailsuffix') FILTER html %] </td> </tr> <tr> - <td align="right"> - <b>Password:</b> - </td> + <th align="right"><label for="Bugzilla_password">Password:</label></th> <td> - <input type="password" size="35" name="Bugzilla_password"> + <input type="password" size="35" id="Bugzilla_password" name="Bugzilla_password"> </td> </tr> [% IF Param('rememberlogin') == 'defaulton' || Param('rememberlogin') == 'defaultoff' %] <tr> - <td> </td> + <th> </th> <td> - <input type="checkbox" name="Bugzilla_remember" value="on" + <input type="checkbox" id="Bugzilla_remember" name="Bugzilla_remember" value="on" [% "checked" IF Param('rememberlogin') == "defaulton" %]> - Remember my Login + <label for="Bugzilla_remember">Remember my Login</label> </td> </tr> [% END %] [% IF Param('loginnetmask') < 32 %] <tr> - <td align="right"> - <b> - Restrict this session<br> - to this IP address: - </b> - </td> + <th> </th> <td> - <input type="checkbox" name="Bugzilla_restrictlogin" + <input type="checkbox" id="Bugzilla_restrictlogin" name="Bugzilla_restrictlogin" checked="checked"> - (Using this option improves security) + <label for="Bugzilla_restrictlogin">Restrict this session to this IP address + (using this option improves security)</label> </td> </tr> [% END %] |