mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-03 21:21:14 -04:00
81 lines
4.1 KiB
Plaintext
81 lines
4.1 KiB
Plaintext
{% 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>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>
|
||
</li>
|
||
|
||
<li>
|
||
<h2 class="heading-small">Create an account</h2>
|
||
{% if not current_user.is_authenticated %}
|
||
<p><a href="{{ url_for('.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>
|
||
{% else %}
|
||
<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_new') }}">trial mode</a>.</p>
|
||
{% endif %}
|
||
</li>
|
||
|
||
<li>
|
||
<h2 class="heading-small">Write some messages</h2>
|
||
<p>Add <a href="{{ url_for('main.features', _anchor='templates') }}">reusable message templates</a> with examples of the content you plan to send.</p>
|
||
<p>The GOV.UK Service Manual has advice on:</p>
|
||
<ul class="list list-bullet">
|
||
<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>
|
||
<li><a href="https://www.gov.uk/service-manual/design/writing-effective-letters">writing effective letters</a></li>
|
||
</ul>
|
||
<p>If you’re planning to <a href="{{ url_for('main.features_letters', _anchor='upload-letters') }}">upload your own letters</a>, you do not need to add letter templates.</p>
|
||
</li>
|
||
|
||
<li>
|
||
<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>
|
||
|
||
<p>You only need to do this if you’re using the API to send messages automatically, rather than signing in to Notify.</p>
|
||
</li>
|
||
|
||
<li>
|
||
<h2 class="heading-small">Manage your team members and settings</h2>
|
||
{% if not current_user.is_authenticated %}
|
||
<p>Check that each of your <a href="{{ url_for('') }}">team members</a> has the right <a href="{{ url_for('main.features', _anchor='permissions') }}">permissions</a>.</p>
|
||
<p>Review your <a href="{{ url_for('') }}">settings</a> to make sure you have the right branding and sender information.</p>
|
||
{% else %}
|
||
<p>Check that each of your team members has the right <a href="{{ url_for('main.features', _anchor='permissions') }}">permissions</a>.</p>
|
||
<p>Review your settings to make sure you have the right branding and sender information.</p>
|
||
{% endif %}
|
||
</li>
|
||
|
||
<li>
|
||
<h2 class="heading-small">Start sending messages</h2>
|
||
{% if not current_user.is_authenticated %}
|
||
<p>You should <a href="{{ url_for('') }}">request to go live</a> when you’re ready to start sending messages to people outside your team.</p>
|
||
{% else %}
|
||
<p>You should request to go live when you’re ready to start sending messages to people outside your team.</p>
|
||
{% endif %}
|
||
<p>When we receive your request we’ll get back to you within one working day.</p>
|
||
|
||
{% endblock %}
|