source: extensions/UserAdvManager/branches/2.40/template/ConfirmMail.tpl @ 14730

Last change on this file since 14730 was 14730, checked in by Eric, 12 years ago

r14729 merged from trunk to branch 2.40 :
Bug 2620 fixed - Display of ConfirmMail, rejected and del_account pages have been improved
Bug 2621 fixed - Display of ConfirmMail, rejected and del_account pages have been improved for IE8 and IE9 render
Bug 2631 fixed - Piwigo 2.4 compliance : $confgallery_url replaced by get_gallery_home_url() for [myurl] tag
Bug 2623 fixed - Ability to customize email subjects (confirmation, information and ghostTracker email)
Bug 2628 fixed - Php notice when email is not mandatory for registration

  • Property svn:eol-style set to LF
File size: 1.4 KB
Line 
1{html_head}<link rel="stylesheet" type="text/css" href="template/confmail.css">{/html_head}
2
3{if $themeconf.name|strstr:"stripped"}
4<div class="titrePage">
5  <ul class="categoryActions">
6    <li>
7    {if $REDIRECT}
8      <a href="{$ROOT_URL}identification.php" title="{'return to homepage'|@translate}">
9        <img src="{$UAM_PATH}template/icon/home.png" class="button" alt="{'home'|@translate}">
10      </a>
11    {else}
12      <a href="{$ROOT_URL}" title="{'return to homepage'|@translate}">
13        <img src="{$UAM_PATH}template/icon/home.png" class="button" alt="{'home'|@translate}">
14      </a>
15    {/if}
16    </li>
17  </ul>
18  &nbsp;&nbsp;&nbsp;<h2 class="confmail">{'UAM_title_confirm_mail'|@translate}</h2>
19</div>
20{else}
21<div class="titrePage">
22  <ul class="categoryActions">
23    <li>
24    {if $REDIRECT}
25      <a href="{$ROOT_URL}identification.php" title="{'return to homepage'|@translate}">
26        <img src="{$UAM_PATH}template/icon/home.png" class="button" alt="{'home'|@translate}">
27      </a>
28    {else}
29      <a href="{$ROOT_URL}" title="{'return to homepage'|@translate}">
30        <img src="{$UAM_PATH}template/icon/home.png" class="button" alt="{'home'|@translate}">
31      </a>
32    {/if}
33    </li>
34  </ul>
35  <h2 class="confmail">{'UAM_title_confirm_mail'|@translate}</h2>
36</div>
37{/if}
38
39<ul>
40{if $STATUS == true}
41  <div class="infos">{$CONFIRM_MAIL_MESSAGE}</div>
42{elseif $STATUS == false}
43  <div class="errors">{$CONFIRM_MAIL_MESSAGE}</div>
44{/if}
45</ul>
Note: See TracBrowser for help on using the repository browser.