piwigo/themes/default/template/password.tpl
rvelices 4748adc3f5 - removed function get_extra_fields and its usage (unnecessary + perf issue when retrieving many image ids in a section)
- 2 fixes recent feed.php commit
  * month names were decalated by one
  * strptime function is not implemented under Windows in php
- added somme missing $ROOT_URL in templates

git-svn-id: http://piwigo.org/svn/trunk@6668 68402e56-0260-453c-a942-63ccdbb3a9ee
2010-07-06 20:10:03 +00:00

53 lines
1.4 KiB
Smarty

<div id="content" class="content">
<div class="titrePage">
<ul class="categoryActions">
<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>{'Password forgotten'|@translate}</h2>
</div>
{if count($errors)}
<div class="errors">
<ul>
{foreach from=$errors item=error}
<li>{$error}</li>
{/foreach}
</ul>
</div>
{/if}
{if count($infos)}
<div class="infos">
<ul>
{foreach from=$infos item=info}
<li>{$info}</li>
{/foreach}
</ul>
</div>
{/if}
<form action="{$F_ACTION}" method="post" class="properties">
<fieldset>
<legend>{'Retrieve password'|@translate}</legend>
<ul>
<li>
<span class="property">
<label for="mail_address">{'Email address'|@translate}</label>
</span>
<input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40" >
</li>
<li>
<span class="property">
<label for="no_mail_address">{'No email address'|@translate}</label>
</span>
<input type="checkbox" id="no_mail_address" name="no_mail_address" value="1">
</li>
</ul>
</fieldset>
<p><input class="submit" type="submit" name="submit" value="{'Send new password'|@translate}"></p>
</form>
</div> <!-- content -->