Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | {* |
2 | +--------------------------------------------------------------------+ | |
fee14197 | 3 | | CiviCRM version 5 | |
6a488035 | 4 | +--------------------------------------------------------------------+ |
6b83d5bd | 5 | | Copyright CiviCRM LLC (c) 2004-2019 | |
6a488035 TO |
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 class="crm-block crm-form-block crm-contribution-preview-form-block"> | |
27 | <fieldset><legend>{ts}Contribution Page{/ts}</legend> | |
28 | <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div> | |
29 | <table class="form-layout-compressed"> | |
30 | <tr class="crm-contribution-form-block-intro_text"> | |
31 | <td class="label">{$form.intro_text.label}</td> | |
32 | <td class="html-adjust">{$form.intro_text.html}</td> | |
33 | </tr> | |
34 | <tr class="crm-contribution-form-block-amount"> | |
35 | <td class="label">{$form.amount.label}</td> | |
36 | <td class="html-adjust">{$form.amount.html}</td> | |
37 | </tr> | |
38 | {if $is_allow_other_amount} | |
39 | <tr class="crm-contribution-form-block-amount_other"> | |
40 | <td class="label">{$form.amount_other.label}</td> | |
41 | <td class="html-adjust">{$form.amount_other.html}</td> | |
42 | </tr> | |
43 | {/if} | |
44 | <tr class="crm-contribution-form-block-email"> | |
45 | <td class="label">{$form.email.label}</td> | |
46 | <td class="html-adjust">{$form.email.html}</td> | |
47 | </tr> | |
48 | {include file="CRM/UF/Form/Block.tpl" fields=$customPre} | |
49 | <tr class="crm-contribution-form-block-_qf_Preview_next_express"><td></td><td>{$form._qf_Preview_next_express.html}</td> | |
50 | </tr> | |
51 | <tr class="crm-contribution-form-block-first_name"> | |
52 | <td class="label">{$form.first_name.label}</td> | |
53 | <td class="html-adjust">{$form.first_name.html}</td> | |
54 | </tr> | |
55 | <tr class="crm-contribution-form-block-middle_name"> | |
56 | <td class="label">{$form.middle_name.label}</td> | |
57 | <td class="html-adjust">{$form.middle_name.html}</td> | |
58 | </tr> | |
59 | <tr class="crm-contribution-form-block-last_name"> | |
60 | <td class="label">{$form.last_name.label}</td> | |
61 | <td class="html-adjust">{$form.last_name.html}</td> | |
62 | </tr> | |
63 | <tr class="crm-contribution-form-block-street1"> | |
64 | <td class="label">{$form.street1.label}</td> | |
65 | <td class="html-adjust">{$form.street1.html}</td> | |
66 | </tr> | |
67 | <tr class="crm-contribution-form-block-city"> | |
68 | <td class="label">{$form.city.label}</td> | |
69 | <td class="html-adjust">{$form.city.html}</td> | |
70 | </tr> | |
71 | <tr class="crm-contribution-form-block-state_province"> | |
72 | <td class="label">{$form.state_province.label}</td> | |
73 | <td class="html-adjust">{$form.state_province.html}</td> | |
74 | </tr> | |
75 | <tr class="crm-contribution-form-block-postal_code"> | |
76 | <td class="label">{$form.postal_code.label}</td> | |
77 | <td class="html-adjust">{$form.postal_code.html}</td> | |
78 | </tr> | |
79 | <tr class="crm-contribution-form-block-country_id"> | |
80 | <td class="label">{$form.country_id.label}</td> | |
81 | <td class="html-adjust">{$form.country_id.html}</td> | |
82 | </tr> | |
83 | <tr class="crm-contribution-form-block-credit_card_number"> | |
84 | <td class="label">{$form.credit_card_number.label}</td> | |
85 | <td class="html-adjust">{$form.credit_card_number.html}</td> | |
86 | </tr> | |
87 | <tr class="crm-contribution-form-block-cvv2"> | |
88 | <td class="label">{$form.cvv2.label}</td> | |
89 | <td class="html-adjust">{$form.cvv2.html}</td> | |
90 | </tr> | |
91 | <tr class="crm-contribution-form-block-credit_card_type"> | |
92 | <td class="label">{$form.credit_card_type.label}</td> | |
93 | <td class="html-adjust">{$form.credit_card_type.html}</td> | |
94 | </tr> | |
95 | <tr class="crm-contribution-form-block-credit_card_exp_date"> | |
96 | <td class="label">{$form.credit_card_exp_date.label}</td> | |
97 | <td class="html-adjust">{$form.credit_card_exp_date.html}</td> | |
98 | </tr> | |
99 | {include file="CRM/UF/Form/Block.tpl" fields=$customPost} | |
100 | </table> | |
101 | <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div> | |
102 | </fieldset> | |
232624b1 | 103 | </div> |