diff options
author | nikrou <nikrou@piwigo.org> | 2009-03-09 19:41:45 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2009-03-09 19:41:45 +0000 |
commit | bea3462f56e589ac95619c865cb4d89efe554d13 (patch) | |
tree | 048b6e1e0737604053f6982ebae253c9ce7fc332 /template/yoga/identification.tpl | |
parent | 10e179f482cdba4ba8bfbe98a51b160435d399c1 (diff) |
fix html warnings. unclosed monotags
git-svn-id: http://piwigo.org/svn/trunk@3185 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/identification.tpl')
-rw-r--r-- | template/yoga/identification.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/yoga/identification.tpl b/template/yoga/identification.tpl index 944954be5..d3fac035e 100644 --- a/template/yoga/identification.tpl +++ b/template/yoga/identification.tpl @@ -5,9 +5,9 @@ <ul class="categoryActions"> <li><a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"></a></li> {if isset($U_REGISTER) } - <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"/></a></li> + <li><a href="{$U_REGISTER}" title="{'Create a new account'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/register.png" class="button" alt="{'Register'|@translate}"></a></li> {/if} - <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li> + <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"></a></li> </ul> <h2>{'Identification'|@translate}</h2> </div> @@ -33,14 +33,14 @@ <span class="property"> <label for="username">{'Username'|@translate}</label> </span> - <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" /> + <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40"> </li> <li> <span class="property"> <label for="password">{'Password'|@translate}</label> </span> - <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" /> + <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25"> </li> {if $authorize_remembering } |