mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
66 lines
2 KiB
Smarty
66 lines
2 KiB
Smarty
{if isset($MENUBAR)}{$MENUBAR}{/if}
|
|
<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
|
|
|
|
<div class="titrePage">
|
|
<ul class="categoryActions">
|
|
</ul>
|
|
<h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Identification'|@translate}</h2>
|
|
</div>
|
|
|
|
{include file='infos_errors.tpl'}
|
|
|
|
<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
|
|
<fieldset>
|
|
<legend>{'Connection settings'|@translate}</legend>
|
|
|
|
<ul>
|
|
<li>
|
|
<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">
|
|
</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">
|
|
</li>
|
|
|
|
{if $authorize_remembering }
|
|
<li>
|
|
<span class="property">
|
|
<label for="remember_me">{'Auto login'|@translate}</label>
|
|
</span>
|
|
<input tabindex="3" type="checkbox" name="remember_me" id="remember_me" value="1">
|
|
</li>
|
|
{/if}
|
|
</ul>
|
|
</fieldset>
|
|
|
|
<p>
|
|
<input type="hidden" name="redirect" value="{$U_REDIRECT|@urlencode}">
|
|
<input tabindex="4" type="submit" name="login" value="{'Submit'|@translate}">
|
|
</p>
|
|
|
|
<p>
|
|
{if isset($U_REGISTER)}
|
|
<a href="{$U_REGISTER}" title="{'Register'|@translate}" class="pwg-state-default pwg-button">
|
|
<span class="pwg-icon pwg-icon-register"> </span><span>{'Register'|@translate}</span>
|
|
</a>
|
|
{/if}
|
|
{if isset($U_LOST_PASSWORD)}
|
|
<a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" class="pwg-state-default pwg-button">
|
|
<span class="pwg-icon pwg-icon-lost-password"> </span><span>{'Forgot your password?'|@translate}</span>
|
|
</a>
|
|
{/if}
|
|
</p>
|
|
|
|
</form>
|
|
|
|
<script type="text/javascript"><!--
|
|
document.login_form.username.focus();
|
|
//--></script>
|
|
|
|
</div> <!-- content -->
|