diff options
author | lpsolit%gmail.com <> | 2006-07-12 21:21:36 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-07-12 21:21:36 +0200 |
commit | 2362793369156ae7c9c63c50a07ac2c79a9df7fa (patch) | |
tree | 5bfcf1b1a5410c8691be31c81057bd06231c86b1 /template/en/default/account | |
parent | 38b4491409ab9e0bd8c020a0d87c8b273097139b (diff) | |
download | bugzilla-2362793369156ae7c9c63c50a07ac2c79a9df7fa.tar.gz bugzilla-2362793369156ae7c9c63c50a07ac2c79a9df7fa.tar.xz |
Bug 317694: All buttons in forms must have an id - Patches by André Batosti <batosti@async.com.br> r=ghendricks a=myk
Diffstat (limited to 'template/en/default/account')
7 files changed, 10 insertions, 8 deletions
diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl index bf8e867ff..621f65ff0 100644 --- a/template/en/default/account/auth/login-small.html.tmpl +++ b/template/en/default/account/auth/login-small.html.tmpl @@ -74,7 +74,8 @@ [% END %] <tr> - <td><input type="submit" name="GoAheadAndLogIn" value="Login"></td> + <td><input type="submit" name="GoAheadAndLogIn" value="Login" + id="log_in"></td> [%# For now, password change requests only apply to the DB # verification method #%] diff --git a/template/en/default/account/auth/login.html.tmpl b/template/en/default/account/auth/login.html.tmpl index adbae970a..56d0612d6 100644 --- a/template/en/default/account/auth/login.html.tmpl +++ b/template/en/default/account/auth/login.html.tmpl @@ -87,7 +87,7 @@ [% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password|restrictlogin)$" %] - <input type="submit" name="GoAheadAndLogIn" value="Log in"> + <input type="submit" name="GoAheadAndLogIn" value="Log in" id="log_in"> <p> (Note: you should make sure cookies are enabled for this site. @@ -118,7 +118,7 @@ enter your login name below and submit a request to change your password.<br> <input size="35" name="loginname"> - <input type="submit" value="Submit Request"> + <input type="submit" id="request" value="Submit Request"> </form> [% END %] diff --git a/template/en/default/account/create.html.tmpl b/template/en/default/account/create.html.tmpl index 8ffe6470c..052a2b7fe 100644 --- a/template/en/default/account/create.html.tmpl +++ b/template/en/default/account/create.html.tmpl @@ -69,7 +69,7 @@ Create a new [% terms.Bugzilla %] account </tr> </table> <br> - <input type="submit" value="Create Account"> + <input type="submit" id="create" value="Create Account"> </form> [% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/account/email/confirm.html.tmpl b/template/en/default/account/email/confirm.html.tmpl index 232d8b3b7..5bf79f058 100644 --- a/template/en/default/account/email/confirm.html.tmpl +++ b/template/en/default/account/email/confirm.html.tmpl @@ -40,7 +40,7 @@ </tr> <tr> <th align="right"> </th> - <td><input type="submit" value="Submit"></td> + <td><input type="submit" id="confirm" value="Submit"></td> </tr> </table> </form> diff --git a/template/en/default/account/exists.html.tmpl b/template/en/default/account/exists.html.tmpl index 57baa13bb..0685485cf 100644 --- a/template/en/default/account/exists.html.tmpl +++ b/template/en/default/account/exists.html.tmpl @@ -34,7 +34,8 @@ <input type="hidden" name="loginname" value="[% login FILTER html %]"> A [% terms.Bugzilla %] account for <tt>[% login FILTER html %]</tt> already exists. If you are the account holder and have forgotten your password, - <input type="submit" value="submit a request to change it">. + <input type="submit" id="request" + value="submit a request to change it">. </form> [% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/account/password/set-forgotten-password.html.tmpl b/template/en/default/account/password/set-forgotten-password.html.tmpl index 147bc4bfa..89d3dd01e 100644 --- a/template/en/default/account/password/set-forgotten-password.html.tmpl +++ b/template/en/default/account/password/set-forgotten-password.html.tmpl @@ -47,7 +47,7 @@ <tr> <th align="right"> </th> <td> - <input type="submit" value="Submit"> + <input type="submit" id="update" value="Submit"> </td> </tr> </table> diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl index 9cb66f7bd..bb33bd6e8 100644 --- a/template/en/default/account/prefs/prefs.html.tmpl +++ b/template/en/default/account/prefs/prefs.html.tmpl @@ -96,7 +96,7 @@ <tr> <td width="150"> </td> <td> - <input type="submit" value="Submit Changes"> + <input type="submit" id="update" value="Submit Changes"> </td> </tr> </table> |