From 39f96c2f83210c391757c68709d9a0ef6bb88db7 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Thu, 4 Apr 2019 16:00:17 +0100 Subject: [PATCH] Add Trial mode content Add Trial mode content --- app/templates/views/trial-mode.html | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/app/templates/views/trial-mode.html b/app/templates/views/trial-mode.html index 8b1378917..3a39e4ad0 100644 --- a/app/templates/views/trial-mode.html +++ b/app/templates/views/trial-mode.html @@ -1 +1,45 @@ +{% extends "withoutnav_template.html" %} +{% from "components/sub-navigation.html" import sub_navigation %} +{% block per_page_title %} + Using Notify +{% endblock %} + +{% block maincolumn_content %} + +
+
+ {{ sub_navigation(navigation_links) }} +
+
+ +

Trial mode

+ +

When you set up a new service it will start in trial mode. This lets you try out GOV.UK Notify, with a few restrictions.

+

A service in trial mode can only:

+
    +
  • send 50 text messages and emails per day
  • +
  • send messages to you and other people in your team
  • +
  • create draft letters, but not send them
  • +
+ +

+ To remove these restrictions, you can + {% if current_service and current_service.trial_mode %} + send us a request to go live. + {% else %} + send us a request to go live. + {% endif %} +

+ +

Before you can request to go live, you must:

+
    +
  • sign our data sharing and financial agreement
  • +
  • accept our terms of use
  • +
  • set up your service so you're ready to send and receive messages
  • +
+ + +
+ +{% endblock %}