diff options
author | David Lawrence <dkl@mozilla.com> | 2014-12-22 20:44:41 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2014-12-22 20:44:41 +0100 |
commit | 89e09eb00b896f41ba6e82ce758cd7ea3905f0db (patch) | |
tree | f30028505f24fe2e6ff7224d804f857324c70fa6 /template/en/default/account/auth | |
parent | b7062fb466bbb9509a0d96dea35653560326584d (diff) | |
download | bugzilla-89e09eb00b896f41ba6e82ce758cd7ea3905f0db.tar.gz bugzilla-89e09eb00b896f41ba6e82ce758cd7ea3905f0db.tar.xz |
Bug 1113286: backport upstream bug 686333 to bmo/4.2 to convert Bugzilla login fields to <input type=email>
Diffstat (limited to 'template/en/default/account/auth')
-rw-r--r-- | template/en/default/account/auth/login.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/account/auth/login.html.tmpl b/template/en/default/account/auth/login.html.tmpl index 0aac403a5..dac24bcdc 100644 --- a/template/en/default/account/auth/login.html.tmpl +++ b/template/en/default/account/auth/login.html.tmpl @@ -46,7 +46,8 @@ <tr> <th align="right"><label for="Bugzilla_login">Email Address:</label></th> <td> - <input size="35" id="Bugzilla_login" name="Bugzilla_login"> + <input size="35" id="Bugzilla_login" name="Bugzilla_login" + [%- ' type="email"' UNLESS Param('emailsuffix') %]> [% Param('emailsuffix') FILTER html %] </td> </tr> |