+ {% if not valid_token %}
+ {% trans "Error with token, you need to reconnect the Facebook page by clicking the button below" %}
+ {% else %}
+ {% trans "Everything looks good. No need to reconnect" %}
+ {% endif %}
+
+{% endblock content %}
diff --git a/templates/channels/types/facebookapp/claim.html b/templates/channels/types/facebookapp/claim.html
index 5d1993cc720..28a92d64ba7 100644
--- a/templates/channels/types/facebookapp/claim.html
+++ b/templates/channels/types/facebookapp/claim.html
@@ -2,9 +2,15 @@
{% load i18n compress temba %}
{% block pre-form %}
- {% blocktrans trimmed with name=branding.name %}
- You can connect your Facebook page to {{ name }} in just a few simple steps.
- {% endblocktrans %}
+ {% if update_existing %}
+ {% blocktrans trimmed %}
+ Your existing channel has invalid credentials, you need to go through the steps below again to get the credentials updated.
+ {% endblocktrans %}
+ {% else %}
+ {% blocktrans trimmed with name=branding.name %}
+ You can connect your Facebook page to {{ name }} in just a few simple steps.
+ {% endblocktrans %}
+ {% endif %}
{% if claim_error %}
{{ claim_error }}
@@ -23,7 +29,13 @@
-
{% trans "Add Facebook Page" %}
+
+ {% if update_existing %}
+ {% trans "Connect Facebook Page" %}
+ {% else %}
+ {% trans "Add Facebook Page" %}
+ {% endif %}
+