[dw-free] standardize tabbing order on log in pages
[commit: http://hg.dwscoalition.org/dw-free/rev/3790a30e36df]
http://bugs.dwscoalition.org/show_bug.cgi?id=784
Change the tab order of the "forgot password link" and openid login links to
be consistent with source order, as well as all the other login forms.
Patch by
deborah.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=784
Change the tab order of the "forgot password link" and openid login links to
be consistent with source order, as well as all the other login forms.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/weblib.pl
-------------------------------------------------------------------------------- diff -r 901c12ccc642 -r 3790a30e36df cgi-bin/weblib.pl --- a/cgi-bin/weblib.pl Thu Jun 10 15:33:38 2010 -0500 +++ b/cgi-bin/weblib.pl Fri Jun 11 11:40:23 2010 +0800 @@ -2974,8 +2974,8 @@ LOGIN_BAR $ret .= "</td></tr>"; $ret .= "<tr><td valign='top'>"; - $ret .= "<a href='$LJ::SITEROOT/lostinfo' tabindex='6'>$BML::ML{'web.controlstrip.login.forgot'}</a>"; - $ret .= " <a href='$LJ::SITEROOT/openid/' tabindex='5'>$BML::ML{'web.controlstrip.login.openid'}</a>"; + $ret .= "<a href='$LJ::SITEROOT/openid/' tabindex='5'>$BML::ML{'web.controlstrip.login.openid'}</a>"; + $ret .= " <a href='$LJ::SITEROOT/lostinfo' tabindex='6'>$BML::ML{'web.controlstrip.login.forgot'}</a>"; $ret .= "</td><td style='font: 10px Arial, Helvetica, sans-serif;' valign='top' colspan='2' align='right'>"; $ret .= "<input type='checkbox' id='xc_remember' name='remember_me' style='height: 10px; width: 10px;' tabindex='3' />"; $ret .= "<label for='xc_remember'>$BML::ML{'web.controlstrip.login.remember'}</label>"; --------------------------------------------------------------------------------