Files
notifications-admin/app/templates/views/service-settings/request-to-go-live.html
Chris Hill-Scott 3989d1b576 Add pages for ‘service settings’ flow
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.
2016-01-08 14:56:14 +00:00

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 %}