source: trunk/template/yoga/password.tpl @ 2315

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