mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 11:51:05 -05:00
All paragraphs should have class="govuk-body", or be otherwise custom-styled. This commit adds some extra checks to our test fixture that looks for paragraphs that don’t have any styling. Our test coverage is pretty good, so this should check almost all pages, and prevent regressions. I’ve done this in such a way that it can be extended for other elements (e.g. links) in the future.
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
{% extends "content_template.html" %}
|
||
|
||
{% block per_page_title %}
|
||
Trial mode
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="heading-large">Trial mode</h1>
|
||
|
||
<p class="govuk-body">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 class="govuk-body">While your service is in trial mode you can only:</p>
|
||
<ul class="list list-bullet">
|
||
<li>send 50 text messages and emails per day</li>
|
||
<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 class="govuk-body">
|
||
To remove these restrictions, you can <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.request_to_go_live', service_id=current_service.id) }}">request to go live</a>.</p>
|
||
{% else %}
|
||
<p class="govuk-body">
|
||
To remove these restrictions:
|
||
</p>
|
||
<ol class="list list-number">
|
||
<li><a class="govuk-link govuk-link--no-visited-state" 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 %}
|
||
<p class="govuk-body">
|
||
When we receive your request we’ll get back to you within one working day.
|
||
</p>
|
||
<h2 class="heading-medium" id="before-you-request-to-go-live">Before you request to go live</h2>
|
||
<p class="govuk-body">You must:</p>
|
||
<ul class="list list-bullet">
|
||
<li>add examples of the messages you want to send</li>
|
||
<li>update your settings so you’re ready to send and receive messages</li>
|
||
<li>accept our data sharing and financial agreement</li>
|
||
<li>accept our terms of use</li>
|
||
</ul>
|
||
|
||
|
||
{% endblock %}
|