{% extends "base.html" %} {% set active_page = "billing" %} {% block title %}FaultRay - Billing{% endblock %} {% block page_title %}Billing & Plans{% endblock %} {% block page_subtitle %}Manage your subscription and usage{% endblock %} {% block content %}

Current Plan

Simulations This Month
Components
Support Level
Subscription Status
{% if not stripe_enabled %}
Stripe is not configured. Set STRIPE_SECRET_KEY to enable billing features.
{% endif %}

Compare Plans

Free
$0 / forever
  • Components {{ tiers.free.max_components }}
  • Simulations / month {{ tiers.free.max_simulations_per_month }}
  • Compliance Reports
  • Insurance API
  • Custom SSO
  • Support Community
Pro
$299 / month
  • Components {{ tiers.pro.max_components }}
  • Simulations / month Unlimited
  • Compliance Reports
  • Insurance API
  • Custom SSO
  • Support Email (24h SLA)
{% if stripe_enabled %} {% else %} {% endif %}
Enterprise
Custom / contact us
  • Components Unlimited
  • Simulations / month Unlimited
  • Compliance Reports
  • Insurance API
  • Custom SSO
  • Support Dedicated (1h SLA)

Usage Details

Monthly Simulations
Component Usage
Feature Access
Compliance Reports
Insurance API
Custom SSO
Support Level

Subscription Management

{% if stripe_enabled %}

Manage your payment methods, invoices, and subscription settings through the Stripe customer portal.

{% else %}
Billing management requires Stripe configuration. Set STRIPE_SECRET_KEY environment variable to enable subscription management.
{% endif %}
{% endblock %}