diff options
author | myk%mozilla.org <> | 2002-05-22 00:53:03 +0000 |
---|---|---|
committer | myk%mozilla.org <> | 2002-05-22 00:53:03 +0000 |
commit | f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0 (patch) | |
tree | f9bfe5602af8c65ca6045dd499a48a474e8d9804 /template/en/default/account/password | |
parent | 58d6d1b7eaf00f9548a5d4bd188dfe65b32cb982 (diff) | |
download | bugs-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar bugs-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar.gz bugs-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar.bz2 bugs-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar.xz bugs-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.zip |
Fix for bug 47251: Make HTML output HTML 4.01 Transitional compliant.
Patch by mental <xor@ivwnet.com>.
r=justdave,myk
Diffstat (limited to 'template/en/default/account/password')
-rw-r--r-- | template/en/default/account/password/set-forgotten-password.html.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
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 eb1abe746..eaabf7dc4 100644 --- a/template/en/default/account/password/set-forgotten-password.html.tmpl +++ b/template/en/default/account/password/set-forgotten-password.html.tmpl @@ -26,27 +26,27 @@ </p> <form method="post" action="token.cgi"> - <input type="hidden" name="t" value="[% token FILTER html %]" /> - <input type="hidden" name="a" value="chgpw" /> + <input type="hidden" name="t" value="[% token FILTER html %]"> + <input type="hidden" name="a" value="chgpw"> <table> <tr> <th align="right">New Password:</th> <td> - <input type="password" name="password" size="16" maxlength="16" /> + <input type="password" name="password" size="16" maxlength="16"> </td> </tr> <tr> <th align="right">New Password Again:</th> <td> - <input type="password" name="matchpassword" size="16" maxlength="16" /> + <input type="password" name="matchpassword" size="16" maxlength="16"> </td> </tr> <tr> <th align="right"> </th> <td> - <input type="submit" value="Submit" /> + <input type="submit" value="Submit"> </td> </tr> </table> |