Files
notifications-admin/app/templates/views/api-keys/revoke.html
T

38 lines
835 B
HTML
Raw Normal View History

2016-01-19 09:55:13 +00:00
{% extends "withnav_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/api-key.html" import api_key %}
{% block page_title %}
2016-02-08 09:23:51 +00:00
Revoke API key GOV.UK Notify
2016-01-19 09:55:13 +00:00
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">
2016-01-19 09:55:13 +00:00
Revoke API key
</h1>
<p>
2016-01-21 12:28:05 +00:00
{{ key_name }} will no longer let you connect to GOV.UK Notify.
2016-01-19 09:55:13 +00:00
</p>
<p>
You cant undo this.
</p>
</div>
</div>
<form method="post">
{{ page_footer(
'Revoke this API key',
back_link=url_for('.api_keys', service_id=service_id),
back_link_text='Back to API keys',
destructive=True
) }}
</form>
{% endblock %}