Files
notifications-admin/app/templates/views/get-started
2019-10-15 11:38:30 +01:00

81 lines
4.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "content_template.html" %}
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
{% from "components/sub-navigation.html" import sub_navigation %}
{% block per_page_title %}
Get started
{% endblock %}
{% block content_column_content %}
<h1 class="heading-large">Get started with GOV.UK Notify</h1>
<ol class="list list-number">
<li>
<h2 class="heading-small">Check if you can use GOV.UK Notify</h2>
<details>
<summary>Organisations that can use Notify</summary>
<p>Notify is available to:</p>
<ul class="list list-bullet">
<li>central government departments</li>
<li>local authorities</li>
<li>state-funded schools</li>
<li>housing associations</li>
<li>the NHS</li>
<li>companies owned by local or central government that deliver services on their behalf</li>
</ul>
<p>Notify is not currently available to charities.</p>
</details>
<p>To find out whether Notify meets your needs, read about our:
<ul class="list list-bullet">
<li><a href="{{ url_for('main.features') }}">features</a></li>
<li><a href="{{ url_for('main.roadmap') }}">roadmap</a></li>
</ul>
<p>You can read about our <a href="{{ url_for('main.features') }}">features</a> and <a href="{{ url_for('main.roadmap') }}">roadmap</a> to find out whether Notify meets your needs.</p>
<p>If you plan to integrate with our API, you can share our <a href="{{ url_for('main.documentation') }}">documentation<a> with your developers.</p>
</li>
<li>
<h2 class="heading-small">Create an account</h2>
{% if not current_user.is_authenticated %}
<p><a href="{{ url_for('main.register') }}">Create an account</a> for free and set up your first Notify service.</p>
{% else %}
<p>Create an account for free and set up your first Notify service.</p>
{% endif %}
<p>When you set up a new service, it will start in <a href="{{ url_for('main.trial-mode') }}">trial mode</a>. This will let you send messages to yourself and other members of your team.</p>
</li>
<li>
<h2 class="heading-small">Add message templates</h2>
<p>While your service is still in trial mode, add templates with examples of the content you plan to send.</p>
<p>GOV.UK has written guidance on:</p>
<ul class="list list-bullet">
<li><a href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages">planning and writing text messages and emails</a></li>
<li><a href="https://www.gov.uk/service-manual/design/writing-effective-letters">writing effective letters</a></li>
</ul>
<p>We recommend testing your messages and changing your settings until everything is working the way you want it to.</p>
</li>
<li>
<h2 class="heading-small">Share Notify with your team</h2>
{% if not current_user.is_authenticated %}
<p>You can invite colleagues from the <a href="{{ url_for('main.register') }}">team members</a> page.</p>
{% else %}
<p>You can invite colleagues from the team members page.</p>
{% endif %}
<p>Notify lets you control which members of your team can see, create, edit and send messages.</p>
<p>If you're using our API to automate your messages, share our <a href="{{ url_for('main.documentation') }}">documentation<a> with your developers.</p>
</li>
<li>
<h2 class="heading-small">Start sending messages</h2>
{% if not current_user.is_authenticated %}
<p>When you're ready to start sending messages to people outside your team, you can send us a <a href="{{ url_for('main.request-to-go-live') }}">request to go live</a>.</p>
{% else %}
<p>When you're ready to start sending messages to people outside your team, you can send us a request to go live.</p>
{% endif %}
<p>By requesting to go live youre agreeing to our terms of use, data sharing and financial agreements.</p>
<p>When we receive your request well get back to you within one working day.</p>
{% endblock %}