Files
notifications-admin/app/templates/views/trial-mode.html

44 lines
1.5 KiB
HTML
Raw Normal View History

{% extends "content_template.html" %}
{% block per_page_title %}
Trial mode
{% endblock %}
{% block content_column_content %}
<h1 class="heading-large">Trial mode</h1>
<p>When you add a new service it will start in trial mode. This lets you try out GOV.UK Notify, with a few restrictions.</p>
<p>While your service is in trial mode you can only:</p>
2019-04-09 15:27:33 +01:00
<ul class="list list-bullet">
<li>send 50 text messages and emails per day</li>
2019-11-20 11:34:03 +00:00
<li>send messages to yourself and other people in your team</li>
<li>create letter templates, but not send them</li>
</ul>
{% if current_service and current_service.trial_mode %}
<p>
To remove these restrictions, you can <a href="{{ url_for('.request_to_go_live', service_id=current_service.id) }}">request to go live</a>.</p>
{% else %}
<p>
To remove these restrictions:
2019-11-22 14:22:32 +00:00
</p>
<ol class="list list-number">
<li><a href="{{ url_for('.sign_in') }}">Sign in to Notify</a>.</li>
<li>Go to the <b class="govuk-!-font-weight-bold">Settings</b> page.</li>
<li>Select <b class="govuk-!-font-weight-bold">Request to go live</b>.</li>
</ol>
{% endif %}
2019-11-22 14:24:07 +00:00
<p>Before you request to go live, you must:</p>
<ul class="list list-bullet">
<li>accept our data sharing and financial agreement</li>
<li>accept our terms of use</li>
<li>set up your service so youre ready to send and receive messages</li>
</ul>
<p>
When we receive your request well get back to you within one working day.
</p>
2019-04-09 15:27:33 +01:00
{% endblock %}