diff options
author | chrisaga <chrisaga@piwigo.org> | 2006-07-22 09:31:30 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2006-07-22 09:31:30 +0000 |
commit | bd26b2226b91e4c4eeba84fa066e61465bbc8887 (patch) | |
tree | b8a90fe2bb0c8f009a11b5dfdd78d049ebc77a65 /template/yoga/register.tpl | |
parent | debab363b61d972c3043844d3a51440800ff8103 (diff) |
merge from trunk r1490:1491 into branch 1.6 (fix bugs 484 and 244 display issues with IE : focus, checkboxe radio)
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1492 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/register.tpl')
-rw-r--r-- | template/yoga/register.tpl | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/template/yoga/register.tpl b/template/yoga/register.tpl index be3fb4a79..c047145af 100644 --- a/template/yoga/register.tpl +++ b/template/yoga/register.tpl @@ -28,28 +28,25 @@ <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';"> + <input type="text" name="login" id="login" value="{F_LOGIN}" > </li> - <li> <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';"> + <input type="password" name="password" id="password" > </li> - <li> <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';"> + <input type="password" name="password_conf" id="password_conf" > </li> - <li> <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';"> + <input type="text" name="mail_address" id="mail_address" value="{F_EMAIL}" > ({lang:useful when password forgotten}) </li> </ul> |