{% extends "wagtail_subscriptions/base.html" %} {% block title %}Subscribe to {{ plan.name }}{% endblock %} {% block content %}

Subscribe to {{ plan.name }}

{{ plan.name }} ${{ plan.price }}/{{ plan.get_billing_period_display|lower }}
{% if plan.description %}

{{ plan.description }}

{% endif %}
{% if plan.trial_period_days > 0 %}

Free Trial: {{ plan.trial_period_days }} days free, then ${{ plan.price }}/{{ plan.get_billing_period_display|lower }}

{% endif %}

• Cancel anytime

• Secure payment processing

• Instant access to all features

{% if not user.is_authenticated %}

Create Your Account

{% csrf_token %}

Already have an account? Sign in

{% else %}

Complete Your Subscription

You're signed in as {{ user.email }}

{% csrf_token %}
{% endif %}

🔒 Your payment information is secure and encrypted. We use industry-standard security measures to protect your data.

{% endblock %}