From feae9ebcdd50bdf9d99c6bce8841294c2de9f060 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Tue, 15 Oct 2019 11:38:30 +0100 Subject: [PATCH] Add draft content --- app/templates/views/get-started | 79 +++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/app/templates/views/get-started b/app/templates/views/get-started index 8b1378917..4772fdf56 100644 --- a/app/templates/views/get-started +++ b/app/templates/views/get-started @@ -1 +1,80 @@ +{% 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 %} + +

Get started with GOV.UK Notify

+ +
    +
  1. +

    Check if you can use GOV.UK Notify

    +
    + Organisations that can use Notify +

    Notify is available to:

    +
      +
    • central government departments
    • +
    • local authorities
    • +
    • state-funded schools
    • +
    • housing associations
    • +
    • the NHS
    • +
    • companies owned by local or central government that deliver services on their behalf
    • +
    +

    Notify is not currently available to charities.

    +
    +

    To find out whether Notify meets your needs, read about our: +

    +

    You can read about our features and roadmap to find out whether Notify meets your needs.

    +

    If you plan to integrate with our API, you can share our documentation with your developers.

    +
  2. + +
  3. +

    Create an account

    + {% if not current_user.is_authenticated %} +

    Create an account for free and set up your first Notify service.

    + {% else %} +

    Create an account for free and set up your first Notify service.

    + {% endif %} +

    When you set up a new service, it will start in trial mode. This will let you send messages to yourself and other members of your team.

    +
  4. + +
  5. +

    Add message templates

    +

    While your service is still in trial mode, add templates with examples of the content you plan to send.

    +

    GOV.UK has written guidance on:

    + +

    We recommend testing your messages and changing your settings until everything is working the way you want it to.

    +
  6. + +
  7. +

    Share Notify with your team

    + {% if not current_user.is_authenticated %} +

    You can invite colleagues from the team members page.

    + {% else %} +

    You can invite colleagues from the team members page.

    + {% endif %} +

    Notify lets you control which members of your team can see, create, edit and send messages.

    +

    If you're using our API to automate your messages, share our documentation with your developers.

    +
  8. + +
  9. +

    Start sending messages

    + {% if not current_user.is_authenticated %} +

    When you're ready to start sending messages to people outside your team, you can send us a request to go live.

    + {% else %} +

    When you're ready to start sending messages to people outside your team, you can send us a request to go live.

    + {% endif %} +

    By requesting to go live you’re agreeing to our terms of use, data sharing and financial agreements.

    +

    When we receive your request we’ll get back to you within one working day.

    + +{% endblock %}