{% extends "basepledge.html" %} {% load humanize %} {% block title %}Fund Your Pledge{% endblock %} {% block extra_extra_head %} {% include "stripe_stuff.html" %} {% endblock %} {% block news %} {% endblock %} {% block content %}
{% if nonprofit.is_on %}
  • Pledge toward this campaign
  • Pay later, only if this campaign succeeds
  • Your pledge will be used only to support this campaign.
  • Learn more
{% endif %} {% if request.user.profile.account %}

Pledge by Credit Card

Unglue.it has a {{ request.user.profile.account.card_type }} credit card on file for you (we use Stripe to keep your information secure). The last four digits of the card are {{ request.user.profile.account.card_last4 }}.

{% csrf_token %} {{ form.non_field_errors }} {{ form.as_p }}

Want to use a different card? You can change your credit card info on your Account & Pledges page.

{% else %}

Pledge by Credit Card

Unglue.it uses Stripe to securely manage your credit card information.

{% csrf_token %} {{ form.non_field_errors }} {{ form.as_p }}
(what is this?)
a typical credit card with CVCFor most cards, this is a 3-digit number at the end of the signature strip on the back. For American Express, it's a four-digit number in small print on the front.
{% endif %}
{% comment %} kept around for reference as the page is overhauled

Funding Your Pledge

We're so happy that you've decided to {% if modified %}increase your pledge{% else %}join{% endif %} this campaign. {% if nonprofit.is_on %} We have two ways we can fund your pledge of ${{preapproval_amount}}.
  1. You can make a donation now to {{nonprofit.name}}, a non-profit charity that's working with Unglue.it to give books to the world.
  2. You can give us your credit card information now; we'll charge your card only if the campaign succeeds.
{% else %} To fund your pledge of ${{preapproval_amount}}, you can give us your credit card information now; we'll charge your card only if the campaign succeeds. {% endif %}
{% if nonprofit.is_on %} {% endif %} {% endcomment %} {% endblock %}