Merge pull request #4771 from pratikshad/CRM-15409
[civicrm-core.git] / templates / CRM / Mailing / Form / Unsubscribe.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26 <div>
27 {if $groupExist}
28 <div class="messages status no-popup">
29 {ts}Are you sure you want to be removed from the mailing list(s) shown below:{/ts}<br/>
30 </div>
31 <table class="selector" style="width: auto; margin-top: 20px;">
32 {counter start=0 skip=1 print=false}
33 {foreach from=$groups item=group}
34 <tr class="{cycle values="odd-row,even-row"}">
35 <td><strong>{$group.title}</strong></td>
36 <td>&nbsp;&nbsp;{$group.description}&nbsp;</td>
37 </tr>
38 {/foreach}
39 </table>
40 <div class="crm-block crm-form-block crm-miscellaneous-form-block">
41 <p>{ts}You are requesting to unsubscribe this email address:{/ts}</p>
42 <h3>{$email_masked}</h3>
43 <p>{ts}If this is not your email address, there is no need to do anything. You have <i><b>not</b></i> been added to any mailing lists. If this is your email address and you <i><b>wish to unsubscribe</b></i> please enter your email address below for verification purposes:{/ts}</p>
44 <table class="form-layout">
45 <tbody>
46 <tr>
47 <td class="label">{$form.email_confirm.label}</td>
48 <td class="content">{$form.email_confirm.html}</td>
49 </tr>
50 </tbody>
51 </table>
52 <div class="crm-submit-buttons">
53 {include file="CRM/common/formButtons.tpl" location="bottom"}
54 </div>
55 <br/>
56 </div>
57 {/if}
58 </div>
59