source: extensions/NBC_UserAdvManager/trunk/template/ConfirmMail.tpl @ 6822

Last change on this file since 6822 was 6785, checked in by Eric, 14 years ago
  • Bug 1693 fixed - Multi-languages are available for ConfirmMail customization (using Extended Description plugin)
  • Bug 1810 partially fixed - Auto login is not performed after visitors have validated their registration but the "home" button changes his link to redirect to identification page when the redirection option is set. Note: The redirection to profile.php doesn't work because I was unable to use the log_user() function on ConfirmMail page. This feature is still under investigation to perform the best way.
  • Property svn:eol-style set to LF
File size: 1.1 KB
Line 
1{html_head}<link rel="stylesheet" type="text/css" href="template/confmail.css">{/html_head}
2
3<div id="content" class="content">
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="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}">
10        </a>
11    {else}
12      {if isset($GALLERY_URL)}
13        <a href="{$GALLERY_URL}" title="{'return to homepage'|@translate}">
14          <img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}">
15        </a>
16      {else}
17        <a href="{$U_HOME}" title="{'return to homepage'|@translate}">
18          <img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}">
19        </a>
20      {/if}
21    {/if}
22      </li>
23    </ul>
24    <h2 class="confmail">{'title_confirm_mail'|@translate}</h2>
25  </div>
26  <ul>
27  {if $STATUS == true}
28    <div class="infos">{$CONFIRM_MAIL_MESSAGE}</div>
29  {elseif $STATUS == false}
30    <div class="errors">{$CONFIRM_MAIL_MESSAGE}</div>
31  {/if}
32  </ul>
33</div>
Note: See TracBrowser for help on using the repository browser.