Files
notifications-admin/app/templates/views/get-started

81 lines
3.8 KiB
Plaintext
Raw Normal View History

2019-10-15 11:38:30 +01:00
{% 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 %}
2019-10-15 09:39:24 +01:00
2019-10-15 11:38:30 +01:00
{% 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>
2019-10-15 17:09:12 +01:00
<p>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>
2019-10-15 11:38:30 +01:00
</li>
<li>
<h2 class="heading-small">Create an account</h2>
{% if not current_user.is_authenticated %}
2019-10-15 17:09:12 +01:00
<p><a href="{{ url_for('main.register') }}">Create an account</a> for free and set up your first Notify service. When you set up a new service, it will start in <a href="{{ url_for('main.trial-mode') }}">trial mode</a>.</p>
2019-10-15 11:38:30 +01:00
{% else %}
2019-10-15 17:09:12 +01:00
<p>Create an account for free and set up your first Notify service. When you set up a new service, it will start in <a href="{{ url_for('main.trial-mode') }}">trial mode</a>.</p>
2019-10-15 11:38:30 +01:00
{% endif %}
</li>
<li>
2019-10-15 17:09:12 +01:00
<h2 class="heading-small">Write some messages</h2>
<p>Add <a href="">reusable message templates</a> with examples of the content you plan to send.</p>
<p>The GOV.UK Service Manual has advice on:</p>
2019-10-15 11:38:30 +01:00
<ul class="list list-bullet">
2019-10-15 17:09:12 +01:00
<li><a href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages#how-to-write-emails-and-text-messages">how to write emails and text messages</a></li>
2019-10-15 11:38:30 +01:00
<li><a href="https://www.gov.uk/service-manual/design/writing-effective-letters">writing effective letters</a></li>
2019-10-15 17:09:12 +01:00
</ul>
<p>If youre planning to <a href="">upload your own letters</a>, you do not need to add letter templates.</p>
2019-10-15 11:38:30 +01:00
</li>
<li>
2019-10-15 17:09:12 +01:00
<h2 class="heading-small">API integration (optional) </h2>
<p>Share our <a href="{{ url_for('main.documentation') }}">documentation</a> with your developers to help them set up an API integration.</p>
2019-10-16 08:56:44 +01:00
<p>You only need to do this if youre using the API to send messages automatically, rather than signing in to Notify.</p>
2019-10-15 17:09:12 +01:00
</li>
<li>
<h2 class="heading-small">Manage your team members and settings</h2>
2019-10-15 11:38:30 +01:00
{% if not current_user.is_authenticated %}
2019-10-15 17:09:12 +01:00
<p>Check that each of your <a href="{{ url_for('') }}">team members</a> has the right <a href="">permissions</a>.</p>
<p>Review your <a href="{{ url_for('') }}">settings</a> to make sure you have the right branding and sender information.</p>
2019-10-15 11:38:30 +01:00
{% else %}
2019-10-15 17:09:12 +01:00
<p>Check that each of your team members has the right <a href="">permissions</a>.</p>
<p>Review your settings to make sure you have the right branding and sender information.</p>
2019-10-15 11:38:30 +01:00
{% endif %}
</li>
<li>
<h2 class="heading-small">Start sending messages</h2>
{% if not current_user.is_authenticated %}
2019-10-16 08:56:44 +01:00
<p><a href="{{ url_for('') }}">Request to go live</a> when youre ready to start sending messages to people outside your team.</p>
2019-10-15 11:38:30 +01:00
{% 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>When we receive your request well get back to you within one working day.</p>
{% endblock %}