2017-12-08 10:52:38 +00:00
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
2017-12-08 10:52:38 +00:00
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-12-08 10:52:38 +00:00
{% block service_page_title %}
2017-12-13 10:35:37 +00:00
Callbacks for delivery receipts
2017-12-08 10:52:38 +00:00
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row" >
2020-02-20 16:55:56 +00:00
< div class = "govuk-grid-column-five-sixths" >
2019-04-29 11:44:05 +01:00
{{ page_header(
'Callbacks for delivery receipts',
back_link=url_for(back_link, service_id=current_service.id)
) }}
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" >
2017-12-08 10:52:38 +00:00
When you send an email or text message, we can tell you if Notify was able to deliver it.
2019-12-06 07:53:46 +00:00
Read the Callbacks section of our < a class = "govuk-link govuk-link--no-visited-state" href = "{{ url_for('main.documentation') }}" > API documentation< / a > for more information.
2017-12-08 10:52:38 +00:00
< / p >
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2017-12-08 10:52:38 +00:00
{{ textbox(
form.url,
2017-12-11 12:03:23 +00:00
width='1-1',
hint='Must start with https://'
2017-12-08 10:52:38 +00:00
) }}
{{ textbox(
form.bearer_token,
2017-12-11 12:03:23 +00:00
width='1-1',
2017-12-08 10:52:38 +00:00
hint='At least 10 characters',
autocomplete='new-password'
) }}
2019-05-09 16:44:34 +01:00
{{ page_footer('Save') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2017-12-08 10:52:38 +00:00
< / div >
< / div >
{% endblock %}