diff options
author | plegall <plg@piwigo.org> | 2006-04-05 21:01:05 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-04-05 21:01:05 +0000 |
commit | e59772b8df1f8528d45bbc548110259f943352ee (patch) | |
tree | 92831c242932d957e2d573c0bcf2f6411e22f253 /template/yoga/password.tpl | |
parent | 969ebbf4f120064ab864329c8daf3adc38cfc38a (diff) |
bug fixed: replace obsolet tn_width and tn_height language keys by their new
equivalent.
improvement: HTML properties forms rewritten to offer labelled Yes/No click
on checkboxes.
improvement: onblur onfocus attribute used on every HTML properties form.
git-svn-id: http://piwigo.org/svn/trunk@1129 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/password.tpl')
-rw-r--r-- | template/yoga/password.tpl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/template/yoga/password.tpl b/template/yoga/password.tpl index 081722cc1..f581507e2 100644 --- a/template/yoga/password.tpl +++ b/template/yoga/password.tpl @@ -33,14 +33,18 @@ <legend>{lang:Retrieve password}</legend> <ul> - <li> - <label for="mail_address">{lang:Email address}</label> - <input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40"> + <li> + <span class="property"> + <label for="mail_address">{lang:Email address}</label> + </span> + <input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40" onfocus="this.className='focus';" onblur="this.className='nofocus';"> </li> <li> - <label>{lang:No email address}</label> - <input type="checkbox" name="no_mail_address" value="1"> + <span class="property"> + <label for="no_mail_address">{lang:No email address}</label> + </span> + <input type="checkbox" id="no_mail_address" name="no_mail_address" value="1"> </li> </ul> </fieldset> |