{% extends "base.html" %} {% load humanize static hc_extras %} {% block title %} {% if is_new %} Add SMS Integration - {% site_name %} {% else %} SMS Settings - {% site_name %} {% endif %} {% endblock %} {% block content %}

SMS

Get a SMS message to the specified phone number when a check goes down.

{% if show_pricing and profile.sms_limit == 0 %}

Paid plan required. SMS messaging is not available on the free plan–sending the messages cost too much! Please upgrade to a paid plan to enable SMS messaging.

{% endif %}

Integration Settings

{% csrf_token %}
{% if form.label.errors %}
{{ form.label.errors|join:"" }}
{% else %} Optional. If you add multiple phone numbers, the labels will help you tell them apart. {% endif %}
{% if form.phone.errors %}
{{ form.phone.errors|join:"" }}
{% else %} Make sure the phone number starts with "+" and has the country code. {% endif %}
{% endblock %}