source: trunk/themes/default/template/password.tpl @ 5164

Last change on this file since 5164 was 5164, checked in by nikrou, 14 years ago

Fix mistypping for home page icon (Home.png instead of home.png)

  • Property svn:eol-style set to LF
File size: 1.4 KB
RevLine 
[2352]1<div id="content" class="content">
[866]2
3  <div class="titrePage">
4    <ul class="categoryActions">
[5164]5      <li><a href="{$U_HOME}" title="{'Home'|@translate}"><img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'Home'|@translate}"></a></li>
[866]6    </ul>
[2223]7    <h2>{'Password forgotten'|@translate}</h2>
[866]8  </div>
9
[2223]10  {if count($errors)}
[866]11  <div class="errors">
12    <ul>
[2223]13      {foreach from=$errors item=error}
14      <li>{$error}</li>
15      {/foreach}
[866]16    </ul>
17  </div>
[2223]18  {/if}
[866]19
[2223]20  {if count($infos)}
[866]21  <div class="infos">
22    <ul>
[2223]23      {foreach from=$infos item=info}
24      <li>{$info}</li>
25      {/foreach}
[866]26    </ul>
27  </div>
[2223]28  {/if}
[866]29
[2223]30<form action="{$F_ACTION}" method="post" class="properties">
[866]31  <fieldset>
[2223]32    <legend>{'Retrieve password'|@translate}</legend>
[866]33
34    <ul>
[1129]35      <li>
36        <span class="property">
[2223]37          <label for="mail_address">{'Email address'|@translate}</label>
[1129]38        </span>
[1491]39        <input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40" >
[866]40      </li>
41      <li>
[1129]42        <span class="property">
[2223]43          <label for="no_mail_address">{'No email address'|@translate}</label>
[1129]44        </span>
45        <input type="checkbox" id="no_mail_address" name="no_mail_address" value="1">
[866]46      </li>
47    </ul>
48  </fieldset>
49
[2223]50  <p><input class="submit" type="submit" name="submit" value="{'Send new password'|@translate}"></p>
[866]51</form>
52
53</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.