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

Your account

{% endblock %} {% block section %}

Your emails

You are registered with the email {{ current_user.email }} since {{ current_user.registered_on.strftime('%B %d, %Y') }}.

{% for email in emails.pending %} {% endfor %} {% for email in emails.verified %} {% endfor %}
{{ email }}
{{ email }}

Plan

{% if current_user.upgraded %}

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 }}.

{% 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 submit AJAX forms
  5. Ability to create forms linked to other email accounts
You are using a free account and should upgrade.
{% endif %}
{% endblock %}