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

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

merge spread_menus to the core

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