summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorWilliam Lachance <wrlach@gmail.com>2017-06-07 19:28:04 +0200
committerDylan William Hardison <dylan@hardison.net>2017-06-07 19:28:04 +0200
commitef7f6526d83caf6a39dc8ed6c96a2c8675ae4011 (patch)
treeee0440043e795023e5408bf48562ac28671d9475 /template
parentb4a3ff8f0346ce217cd54d1ace95585db723401a (diff)
downloadbugzilla-ef7f6526d83caf6a39dc8ed6c96a2c8675ae4011.tar.gz
bugzilla-ef7f6526d83caf6a39dc8ed6c96a2c8675ae4011.tar.xz
Bug 1370904 - Add "required" property to login input elements
Diffstat (limited to 'template')
-rw-r--r--template/en/default/account/auth/login-small.html.tmpl3
-rw-r--r--template/en/default/account/auth/login.html.tmpl5
2 files changed, 6 insertions, 2 deletions
diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl
index 7ca0a44d9..1f38f18b7 100644
--- a/template/en/default/account/auth/login-small.html.tmpl
+++ b/template/en/default/account/auth/login-small.html.tmpl
@@ -53,12 +53,15 @@
name="Bugzilla_login"
title="Login"
placeholder="email address"
+ type="email"
+ required
>
<input class="bz_password"
id="Bugzilla_password[% qs_suffix FILTER html %]"
name="Bugzilla_password"
type="password"
title="Password"
+ required
>
<input class="bz_password bz_default_hidden bz_mini_login_help" type="text"
id="Bugzilla_password_dummy[% qs_suffix %]" value="password"
diff --git a/template/en/default/account/auth/login.html.tmpl b/template/en/default/account/auth/login.html.tmpl
index 33aeaeaea..160fad43b 100644
--- a/template/en/default/account/auth/login.html.tmpl
+++ b/template/en/default/account/auth/login.html.tmpl
@@ -47,13 +47,14 @@
<div class="field-login">
<label for="Bugzilla_login">Email Address:</label>
<input id="Bugzilla_login" name="Bugzilla_login"
- [%- ' type="email"' UNLESS Param('emailsuffix') %]>
+ [%- ' type="email"' UNLESS Param('emailsuffix') %]
+ required>
[% Param('emailsuffix') FILTER html %]
</div>
<div class="field-password">
<label for="Bugzilla_password">Password:</label>
- <input type="password" id="Bugzilla_password" name="Bugzilla_password">
+ <input type="password" id="Bugzilla_password" name="Bugzilla_password" required>
</div>
[% IF Param('rememberlogin') == 'defaulton' ||