{% extends "base.html" %} {% load staticfiles compress %} {% block title %}Pricing - It's Free! - healthchecks.io{% endblock %} {% block content %}
{% if messages %}

We're sorry! There was a problem setting up the subscription. Response from payment gateway:

{% for message in messages %}

{{ message }}

{% endfor %}
{% endif %} {% if sub.is_active %}

{% if first_charge %} You just paid ${{ sub.price }} {% else %} You are currently paying ${{ sub.price }}/month {% endif %} {% if sub.pm_is_credit_card %} using {{ sub.card_type }} card ending with {{ sub.last_4 }}. {% endif %} {% if sub.pm_is_paypal %} using PayPal account {{ sub.paypal_email }}. {% endif %}

Next billing date will be {{ sub.next_billing_date }}. Thank you for supporting healthchecks.io!

{% csrf_token %}
{% endif %}

Free Plan

$0 / Month

  • Personal or Commercial use
  • Unlimited Checks
  • Unlimited Alerts
  •  

Pay What You Want Plan

{% if sub.is_active %} ${{ sub.price }} / Month {% else %} $10 / Month {% endif %}

  • Personal or Commercial use
  • Unlimited Checks
  • Unlimited Alerts
  • Priority Support
{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}