source: extensions/stripped/template/password.tpl @ 9134

Last change on this file since 9134 was 9134, checked in by Zaphod, 13 years ago

[extension] stripped - version 1.2.0

File size: 1.2 KB
Line 
1{php}
2        global $conf;
3        $this->assign('LEVEL_SEPARATOR', $conf[ 'level_separator' ]);
4{/php}
5<div class="titrePage">
6        <div class="browsePath">
7                <h2><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Password forgotten'|@translate}</h2>
8        </div>
9</div>
10<div id="content">
11        {if count($errors)}
12                <div class="errors">
13                        <ul>
14                                {foreach from=$errors item=error}
15                                        <li>{$error}</li>
16                                {/foreach}
17                        </ul>
18                </div>
19        {/if}
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        <form action="{$F_ACTION}" method="post" class="properties">
30                <fieldset>
31                        <legend>{'Retrieve password'|@translate}</legend>
32                        <ul>
33                                <li>
34                                        <span class="property">
35                                                <label for="mail_address">{'Email address'|@translate}</label>
36                                        </span>
37                                        <input class="login" type="text" name="mail_address" id="mail_address" size="40" maxlength="40" >
38                                </li>
39                        </ul>
40                </fieldset>
41                <p><input class="submit" type="submit" name="submit" value="{'Send new password'|@translate}"></p>
42        </form>
43</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.