2016-01-07 12:29:56 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
|
|
|
|
|
GOV.UK Notify | Service settings
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2016-01-07 16:24:43 +00:00
|
|
|
|
<h1 class="heading-xlarge">Turn off outgoing messages</h1>
|
|
|
|
|
|
|
2016-01-07 12:29:56 +00:00
|
|
|
|
<div class="grid-row">
|
2016-01-07 16:24:43 +00:00
|
|
|
|
<div class="column-three-quarters">
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
|
|
|
|
|
<p>
|
2016-01-07 16:24:43 +00:00
|
|
|
|
You’ll still be able to send messages to yourself by uploading a CSV
|
|
|
|
|
|
file.
|
2016-01-07 12:29:56 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
2016-01-07 16:24:43 +00:00
|
|
|
|
You can start sending messages again when you’re ready.
|
2016-01-07 12:29:56 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<form method="post">
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{{ page_footer(
|
2016-01-07 16:24:43 +00:00
|
|
|
|
'Turn off outgoing messages',
|
|
|
|
|
|
destructive=True,
|
|
|
|
|
|
back_link=url_for('.service_settings')
|
|
|
|
|
|
) }}
|
2016-01-07 12:29:56 +00:00
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|