diff options
author | nikrou <nikrou@piwigo.org> | 2010-05-31 11:02:38 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-05-31 11:02:38 +0000 |
commit | 73bcf3d4324678faccadadf133820fde3d77bee2 (patch) | |
tree | c7d647a732bdb18630524fa7445eacea3e0509e8 /themes/default/template | |
parent | 0005a6eec12f544ea2e22a896b0343fa4aa7c86b (diff) |
Fix html bug
git-svn-id: http://piwigo.org/svn/trunk@6429 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template')
-rw-r--r-- | themes/default/template/identification.tpl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/themes/default/template/identification.tpl b/themes/default/template/identification.tpl index 1a34744ac..1d7e6d873 100644 --- a/themes/default/template/identification.tpl +++ b/themes/default/template/identification.tpl @@ -21,8 +21,6 @@ <fieldset> <legend>{'Connection settings'|@translate}</legend> - <input type="hidden" name="redirect" value="{$U_REDIRECT|urlencode}"> - <ul> <li> <span class="property"> @@ -41,7 +39,7 @@ {if $authorize_remembering } <li> <span class="property"> - <label for="Auto login">{'Auto login'|@translate}</label> + <label for="remember_me">{'Auto login'|@translate}</label> </span> <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1"> </li> @@ -49,7 +47,10 @@ </ul> </fieldset> - <p><input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"></p> + <p> + <input type="hidden" name="redirect" value="{$U_REDIRECT|urlencode}"> + <input class="submit" tabindex="4" type="submit" name="login" value="{'Submit'|@translate}"> + </p> <p> {if isset($U_REGISTER) } |