{{ page.headline }}
{{ page.donation_v2.content }}
{% endif %}
{% assign thermo_width = 50 %}
{% if page.donation_v2.has_amount_goal? %}
{% error_messages_for donation %}
{% if page.donation_v2.has_merchant_account? == false %}
No payment processor: This page will not work until you add a payment
processor
{% elsif page.donation_v2.merchant_account.is_test_mode? %}
Testing mode: Transactions will not be processed. Use testing cards only.
{% endif %}
{% if request.current_order %}
{% else %}
{% if page.donation_v2.show_frequency_radio_buttons? %}
{% endif %}
{% endif %}
Your order
-
{% for item in request.current_order.items %}
- {% if item.num_time_periods and item.time_period_type %} {{ item.quantity }} {{ item.name }} @ {{ item.amount }} - billed automatically every {{ item.num_time_periods }} {{item.time_period_type }} {% else %} {{ item.quantity }} {{ item.name }} @ {{ item.amount }} {% endif %} {% endfor %}
Please select or enter an amount
Payment method information has been saved.
Pay with
{% payment_field 'payments' %}
Your information
{% email_field "email", class:"text", required:"required" %}
{% text_field "first_name", class:"text", required:"required" %}
{% text_field "last_name", class:"text", required:"required" %}
{% phone_field
"billing_address.phone_number", class:"text" %}
{% collection_select
"billing_address.country_code", page.donation_v2.countries, "code", "name", class:"select" %}
{% text_field "billing_address.address1", class:"text" %}
{% text_field "billing_address.address2", class:"text" %}
{% text_field "billing_address.address3", class:"text not-us-or-canada hide" %}
{% text_field "billing_address.city",
class:"text" %}
{% text_field "billing_address.zip",
class:"text" %}
{% text_field "employer", class:"text",
required:"required" %}
{% text_field "occupation", class:"text",
required:"required" %}
{% collection_select
"work_address.country_code", page.donation_v2.countries, "code", "name", class:"select", required:"required"
%}
{% text_field "work_address.address1", class:"text", required:"required" %}
{% text_field "work_address.address2", class:"text" %}
{% text_field "work_address.address3", class:"text work-not-us-or-canada hide" %}
{% text_field "work_address.city", class:"text",
required:"required" %}
{% text_field "work_address.state", class:"text",
required:"required" %}
{% text_field "work_address.zip", class:"text",
required:"required" %}
{% collection_select
"work_address.country_code", page.donation_v2.countries, "code", "name", class:"select", required:"required"
%}
{% text_field "work_address.city", class:"text",
required:"required" %}
{% text_field "work_address.zip", class:"text",
required:"required" %}
Law requires we ask for your employer and occupation. If you do not have an employer or are retired, check
"I do not have an employer". If you are self-employed put "self-employed" in employer and describe your
occupation.
{% if custom_field.is_text? %}
{% text_field custom_field_id, class:"text" %}
{% elsif custom_field.is_number? %}
{% number_field custom_field_id, class:"text" %}
{% elsif custom_field.is_boolean? %}
{% elsif custom_field.is_multiple_choice? %}
{% collection_select custom_field_id, custom_fields.donation[custom_field.slug].multiple_choice_options,
class:"select" %}
{% endif %}
{% if page.donation_v2.merchant_account.is_taxable? %}
Contributions are not tax deductible.
{% else %}
Contributions are tax deductible.
{% endif %}
{% if page.donation_v2.merchant_account.has_contribution_rules? %}
{{ page.donation_v2.merchant_account.contribution_rules }}
{% endif %}
{% if site.ask_to_publish_to_stream? and page.show_stream? %}
{% endif %}
{% if request.current_order %}
{{page.donation_v2.ticket_purchase_total}}
{% else %}
{% if page.donation_v2.confirmation_amount %}
{{ page.donation_v2.currency_symbol }}{{
page.donation_v2.confirmation_amount }}
{% else %}
{{ page.donation_v2.currency_symbol }}Please select an amount
{% endif %}
{% if page.donation_v2.donation_frequency == "one-time" %}
{% elsif page.donation_v2.donation_frequency == "monthly" %}
{% if request.current_order %}
{% submit_tag "Process payment", class:"submit-button btn btn-primary btn-lg" %}
{% else %}
{% submit_tag "Donate now", class:"submit-button btn btn-primary btn-lg" %}
{% endif %}
paid monthly
{% elsif page.donation_v2.donation_frequency == "annual" %}paid annually
{% else %}{% if page.donation_v2.interval_monthly? %}paid monthly{% endif %}
{% if page.donation_v2.interval_annual? %}paid annually{% endif %}
{% endif %} {% endif %}