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/register.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/register.tpl')
-rw-r--r-- | template/yoga/register.tpl | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/template/yoga/register.tpl b/template/yoga/register.tpl index ee69ae021..90115d101 100644 --- a/template/yoga/register.tpl +++ b/template/yoga/register.tpl @@ -25,22 +25,30 @@ <ul> <li> - <label for="login" class="mandatory">* {lang:Username}</label> + <span class="property"> + <label for="login">* {lang:Username}</label> + </span> <input type="text" name="login" id="login" value="{F_LOGIN}" onfocus="this.className='focus';" onblur="this.className='nofocus';"> </li> <li> - <label for="password" class="mandatory">* {lang:Password}</label> + <span class="property"> + <label for="password">* {lang:Password}</label> + </span> <input type="password" name="password" id="password" onfocus="this.className='focus';" onblur="this.className='nofocus';"> </li> <li> - <label for="password_conf" class="mandatory">* {lang:Confirm Password}</label> + <span class="property"> + <label for="password_conf">* {lang:Confirm Password}</label> + </span> <input type="password" name="password_conf" id="password_conf" onfocus="this.className='focus';" onblur="this.className='nofocus';"> </li> <li> - <label for="mail_address">{lang:Mail address}</label> + <span class="property"> + <label for="mail_address">{lang:Mail address}</label> + </span> <input type="text" name="mail_address" id="mail_address" value="{F_EMAIL}" onfocus="this.className='focus';" onblur="this.className='nofocus';"> ({lang:useful when password forgotten}) </li> |