Last change
on this file since 25954 was
5167,
checked in by nikrou, 15 years ago
|
Feature 1451 :
- improve speed to generate pages when locales is not present on system
- default domain in now piwigo
- each plugin can have is own domain ({'...'|@translate:my_plugin})
|
-
Property svn:eol-style set to
LF
|
File size:
1.4 KB
|
Line | |
---|
1 | <div id="content" class="content"> |
---|
2 | |
---|
3 | <div class="titrePage"> |
---|
4 | <ul class="categoryActions"> |
---|
5 | <li><a href="{$U_HOME}" title="{'Home'|@translate}"><img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'Home'|@translate}"></a></li> |
---|
6 | </ul> |
---|
7 | <h2>{'Password forgotten'|@translate}</h2> |
---|
8 | </div> |
---|
9 | |
---|
10 | {if count($errors)} |
---|
11 | <div class="errors"> |
---|
12 | <ul> |
---|
13 | {foreach from=$errors item=error} |
---|
14 | <li>{$error}</li> |
---|
15 | {/foreach} |
---|
16 | </ul> |
---|
17 | </div> |
---|
18 | {/if} |
---|
19 | |
---|
20 | {if count($infos)} |
---|
21 | <div class="infos"> |
---|
22 | <ul> |
---|
23 | {foreach from=$infos item=info} |
---|
24 | <li>{$info}</li> |
---|
25 | {/foreach} |
---|
26 | </ul> |
---|
27 | </div> |
---|
28 | {/if} |
---|
29 | |
---|
30 | <form action="{$F_ACTION}" method="post" class="properties"> |
---|
31 | <fieldset> |
---|
32 | <legend>{'Retrieve password'|@translate}</legend> |
---|
33 | |
---|
34 | <ul> |
---|
35 | <li> |
---|
36 | <span class="property"> |
---|
37 | <label for="mail_address">{'Email address'|@translate}</label> |
---|
38 | </span> |
---|
39 | <input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40" > |
---|
40 | </li> |
---|
41 | <li> |
---|
42 | <span class="property"> |
---|
43 | <label for="no_mail_address">{'No email address'|@translate}</label> |
---|
44 | </span> |
---|
45 | <input type="checkbox" id="no_mail_address" name="no_mail_address" value="1"> |
---|
46 | </li> |
---|
47 | </ul> |
---|
48 | </fieldset> |
---|
49 | |
---|
50 | <p><input class="submit" type="submit" name="submit" value="{'Send new password'|@translate}"></p> |
---|
51 | </form> |
---|
52 | |
---|
53 | </div> <!-- content --> |
---|
Note: See
TracBrowser
for help on using the repository browser.