Changeset 9134 for extensions/stripped/template/password.tpl
- Timestamp:
- Feb 9, 2011, 9:17:48 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/stripped/template/password.tpl
r7989 r9134 1 {php} 2 global $conf; 3 $this->assign('LEVEL_SEPARATOR', $conf[ 'level_separator' ]); 4 {/php} 1 5 <div class="titrePage"> 2 <ul class="categoryActions"> 3 <li><a class="button" href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}">{'Home'|@translate}</a></li> 4 </ul> 5 <h2>{'Password forgotten'|@translate}</h2> 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> 6 9 </div> 7 10 <div id="content"> 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 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> 40 43 </div> <!-- content -->
Note: See TracChangeset
for help on using the changeset viewer.