source: extensions/simple_themes/simple/template/password.tpl @ 13546

Last change on this file since 13546 was 13546, checked in by plg, 12 years ago

import theme Simple, version 2.0

  • adaptation of the theme for Piwigo 2.1
File size: 1.4 KB
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3    <li><a class="button" href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}">{'Home'|@translate}</a></li>
4  </ul>
5  <h2>{'Password forgotten'|@translate}</h2>
6</div>
7<div id="content">
8  {if count($errors)}
9  <div class="errors">
10    <ul>
11      {foreach from=$errors item=error}
12      <li>{$error}</li>
13      {/foreach}
14    </ul>
15  </div>
16  {/if}
17  {if count($infos)}
18  <div class="infos">
19    <ul>
20      {foreach from=$infos item=info}
21      <li>{$info}</li>
22      {/foreach}
23    </ul>
24  </div>
25  {/if}
26  <form action="{$F_ACTION}" method="post" class="properties">
27    <fieldset>
28      <legend>{'Retrieve password'|@translate}</legend>
29      <ul>
30        <li>
31        <span class="property">
32            <label for="mail_address">{'Email address'|@translate}</label>
33        </span>
34        <input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40" >
35        </li>
36        <li>
37        <span class="property">
38            <label for="no_mail_address">{'No email address'|@translate}</label>
39        </span>
40          <input type="checkbox" id="no_mail_address" name="no_mail_address" value="1">
41        </li>
42      </ul>
43    </fieldset>
44    <p><input class="submit" type="submit" name="submit" value="{'Send new password'|@translate}"></p>
45  </form>
46</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.