mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 18:37:33 -04:00
23 lines
479 B
HTML
23 lines
479 B
HTML
{% extends "withnav_template.html" %}
|
|||
|
|
{% from "components/submit-form.html" import submit_form %}
|
||
|
|
|
||
|
|
{% block page_title %}
|
||
|
|
GOV.UK Notify | Service settings
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block maincolumn_content %}
|
||
|
|
|
||
|
|
<h1 class="heading-xlarge">Delete this service</h1>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
All will be lost.
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<form method="post">
|
||
|
|
{{ submit_form('Delete', destructive=True) }}
|
||
|
|
</form>
|
||
|
|
|
||
|
|
<p><a href="{{ url_for('.service_settings') }}">Back to service settings</a></p>
|
||
|
|
|
||
|
|
{% endblock %}
|