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

Last change on this file since 8091 was 8091, checked in by rvelices, 13 years ago

css sprites

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