mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-10 10:03:21 -04:00
Adds the pages and wires them together, so that it’s possible to click through them. The wording is not quite English, but attempts to be an rough description of what the consequences are for each of the four actions.
35 lines
788 B
HTML
35 lines
788 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/submit-form.html" import submit_form %}
|
|
{% from "components/list.html" import list %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Service settings
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-xlarge">Make your service live</h1>
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
|
|
<p>
|
|
Before you can send messages to anyone, you need to:
|
|
</p>
|
|
|
|
{{ list([
|
|
"Have spoken to someone",
|
|
"Have permission from someone else",
|
|
"etc."
|
|
]) }}
|
|
|
|
<form method="post">
|
|
{{ submit_form("Request to go live") }}
|
|
</form>
|
|
|
|
<p><a href="{{ url_for('.service_settings') }}">Back to service settings</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|