{% extends 'users/dashboard.html' %} {% block sectiontitle %}

Billing

{% endblock %} {% block section %}

Plan

{% if current_user.has_feature('dashboard') %}

You are a {{ config.SERVICE_NAME }} {{ config.UPGRADED_PLAN_NAME }} user.

{% if sub.cancel_at_period_end %}

You've cancelled your subscription and it is ending on {{ sub.current_period_end }}.

{% else %}

Your subscription will automatically renew on {{ sub.current_period_end }}.

Cancel subscription {% endif %} {% else %}
When you upgrade to {{ config.SERVICE_NAME }} {{ config.UPGRADED_PLAN_NAME }} you will get
  1. Unlimited submissions
  2. Access to submission archives
  3. Ability to hide your email from your page's HTML and replace it with a random-like URL
  4. Ability to create forms linked to other email accounts
You are using a free account and should upgrade.
{% endif %}

Wallet

{% if cards %}
{% for card in cards %} {% endfor %}
••••{{ card.last4 }} {{ card.exp_month }}/{{ card.exp_year }}
{% if card.default %}

{% else %}
{% endif %}

Number: ••••{{ card.last4 }}

Type: {{ card.brand }} {{ card.funding }} card

Origin: {{ card.country }}

CVC Check: {% if card.cvc_check == "pass" %}Passed {% elif card.cvc_check == "fail" %}Failed {% else %}Unknown {% endif %}

{% else %}

We couldn't find any active cards in your wallet. Please make sure to add a card by {{ sub.current_period_end }} or your subscription won't renew.

{% endif %} {% include "users/card.html" %}

Invoices

{% for invoice in invoices %} {% if invoice.attempted %} {% endif %} {% endfor %}
{{ invoice.date|epoch_to_date }} {{ invoice.id }} ${{ invoice.total/100 }} {% if invoice.paid %}Paid{% else %}Unpaid{% endif %} View Details
Edit Invoice Address
{% endblock %}