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

Last change on this file since 1129 was 1129, checked in by plg, 18 years ago

bug fixed: replace obsolet tn_width and tn_height language keys by their new
equivalent.

improvement: HTML properties forms rewritten to offer labelled Yes/No click
on checkboxes.

improvement: onblur onfocus attribute used on every HTML properties form.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1<!-- $Id: password.tpl 1129 2006-04-05 21:01:05Z plg $ -->
2<div id="content">
3
4  <div class="titrePage">
5    <ul class="categoryActions">
6      <li><a href="{U_HOME}" title="{lang:Go through the gallery as a visitor}"><img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/></a></li>
7    </ul>
8    <h2>{lang:Password forgotten}</h2>
9  </div>
10
11  <!-- BEGIN errors -->
12  <div class="errors">
13    <ul>
14      <!-- BEGIN error -->
15      <li>{errors.error.ERROR}</li>
16      <!-- END error -->
17    </ul>
18  </div>
19  <!-- END errors -->
20
21  <!-- BEGIN infos -->
22  <div class="infos">
23    <ul>
24      <!-- BEGIN info -->
25      <li>{infos.info.INFO}</li>
26      <!-- END info -->
27    </ul>
28  </div>
29  <!-- END infos -->
30
31<form action="{F_ACTION}" method="post" class="properties">
32  <fieldset>
33    <legend>{lang:Retrieve password}</legend>
34
35    <ul>
36      <li>
37        <span class="property">
38          <label for="mail_address">{lang:Email address}</label>
39        </span>
40        <input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40" onfocus="this.className='focus';" onblur="this.className='nofocus';">
41      </li>
42
43      <li>
44        <span class="property">
45          <label for="no_mail_address">{lang:No email address}</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 type="submit" name="submit" value="{lang:Send new password}"></p>
53</form>
54
55</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.