diff options
author | nikrou <nikrou@piwigo.org> | 2006-06-22 18:17:47 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2006-06-22 18:17:47 +0000 |
commit | ad45eccd3349d44af4a251ab0f12eb3233cd08b8 (patch) | |
tree | 2924a4d6832bdd18658f15326f40de2ae4ee9105 /template/yoga/identification.tpl | |
parent | 84536f02755a328ab689106719ba17c79f09f85d (diff) |
issue 426 step 1 reverted:
svn merge -r1466:1465 .
svn merge -r1463:1462 .
git-svn-id: http://piwigo.org/svn/trunk@1376 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/identification.tpl')
-rw-r--r-- | template/yoga/identification.tpl | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/template/yoga/identification.tpl b/template/yoga/identification.tpl new file mode 100644 index 000000000..dd07d0135 --- /dev/null +++ b/template/yoga/identification.tpl @@ -0,0 +1,67 @@ +<!-- $Id$ --> +<div id="content"> + + <div class="titrePage"> + <ul class="categoryActions"> + <li><a href="{U_LOST_PASSWORD}" title="{lang:Forgot your password?}"><img src="{themeconf:icon_dir}/lost_password.png" class="button" alt="{lang:Forgot your password?}"></a></li> + <li><a href="{U_REGISTER}" title="{lang:Create a new account}"><img src="{themeconf:icon_dir}/register.png" class="button" alt="{lang:register}"/></a></li> + <li><a href="{U_HOME}" title="{lang:Go through the gallery as a visitor}"><img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/></a></li> + </ul> + <h2>{lang:Identification}</h2> + </div> + + <!-- BEGIN errors --> + <div class="errors"> + <ul> + <!-- BEGIN error --> + <li>{errors.error.ERROR}</li> + <!-- END error --> + </ul> + </div> + <!-- END errors --> + +<form action="{F_LOGIN_ACTION}" method="post" name="login_form" class="properties"> + <fieldset> + <legend>{lang:Connection settings}</legend> + + <input type="hidden" name="redirect" value="{U_REDIRECT}"> + + <ul> + <li> + <span class="property"> + <label for="username">{L_USERNAME}</label> + </span> + <input tabindex="1" class="login" type="text" name="username" id="username" size="25" maxlength="40" value="{USERNAME}" onfocus="this.className='focus';" onblur="this.className='nofocus';" /> + </li> + + <li> + <span class="property"> + <label for="password">{L_PASSWORD}</label> + </span> + <input tabindex="2" class="login" type="password" name="password" id="password" size="25" maxlength="25" onfocus="this.className='focus';" onblur="this.className='nofocus';" /> + </li> + + <!-- BEGIN remember_me --> + <li> + <span class="property"> + <label for="remember_me">{L_REMEMBER_ME}</label> + </span> + <input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1"> + </li> + <!-- END remember_me --> + </ul> + </fieldset> + + <p><input tabindex="4" type="submit" name="login" value="{L_LOGIN}"></p> +</form> + +<script type="text/javascript"><!-- +document.login_form.username.focus(); +//--></script> + + <p> + <a href="{U_REGISTER}"><img src="{themeconf:icon_dir}/register.png" class="button" alt=""> {L_REGISTER}</a> + <a href="{U_LOST_PASSWORD}"><img src="{themeconf:icon_dir}/lost_password.png" class="button" alt=""> {lang:Forgot your password?}</a> + </p> + +</div> <!-- content --> |