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

Last change on this file since 11062 was 10824, checked in by mistic100, 13 years ago

restore HOME links, change parameter name for remove menu on certain page

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