diff options
author | mkanat%bugzilla.org <> | 2009-03-01 23:39:37 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-03-01 23:39:37 +0000 |
commit | b4ab958823eaf0cddb1ce15f8af9ed7539b300cf (patch) | |
tree | f0d251425f29fc6c30c5c8cf3717a933a80bab37 /template/en/default/account | |
parent | 573ea7b8b5bfaa6bda751e31fd50954c2ee22b39 (diff) | |
download | bugs-b4ab958823eaf0cddb1ce15f8af9ed7539b300cf.tar bugs-b4ab958823eaf0cddb1ce15f8af9ed7539b300cf.tar.gz bugs-b4ab958823eaf0cddb1ce15f8af9ed7539b300cf.tar.bz2 bugs-b4ab958823eaf0cddb1ce15f8af9ed7539b300cf.tar.xz bugs-b4ab958823eaf0cddb1ce15f8af9ed7539b300cf.zip |
Bug 478232: Fix HTML validation of pages after index/header UI changes.
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/account')
-rw-r--r-- | template/en/default/account/auth/login-small.html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl index ba1d671fa..fd651e71d 100644 --- a/template/en/default/account/auth/login-small.html.tmpl +++ b/template/en/default/account/auth/login-small.html.tmpl @@ -30,9 +30,8 @@ [% target = urlbase _ target %] <li> - <form name="login" action="[% target FILTER html %]" - class="mini_login" - method="POST" id="mini_login[% qs_suffix FILTER html %]" + <form action="[% target FILTER html %]" method="POST" class="mini_login" + id="mini_login[% qs_suffix FILTER html %]" onsubmit="return check_mini_login_fields( '[% qs_suffix FILTER html %]' );" > <span class="separator">| </span> @@ -58,7 +57,8 @@ [%+ "checked" IF Param('rememberlogin') == "defaulton" %]> <label for="Bugzilla_remember[% qs_suffix %]">Remember</label> [% END %] - <input type="submit" name="GoAheadAndLogIn" value="Log in" id="log_in"> + <input type="submit" name="GoAheadAndLogIn" value="Log in" + id="log_in[% qs_suffix %]"> <div class="bz_default_hidden"> [% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password|restrictlogin|remember)$" %] |