mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-14 23:32:36 -04: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.
42 lines
2.6 KiB
HTML
42 lines
2.6 KiB
HTML
{% extends "content_template.html" %}
|
||
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
|
||
|
||
{% block per_page_title %}
|
||
Text messages
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="heading heading-large">Text messages</h1>
|
||
<p class="govuk-body">Send thousands of free text messages to UK and international numbers with GOV.UK Notify.</p>
|
||
{% if not current_user.is_authenticated %}
|
||
<p class="govuk-body"><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.register') }}">Create an account</a> and try Notify for yourself.</p>
|
||
{% endif %}
|
||
|
||
<h2 class="heading heading-medium">Features</h2>
|
||
<p class="govuk-body">Notify makes it easy to:</p>
|
||
<ul class="list list-bullet">
|
||
<li>create reusable text message templates</li>
|
||
<li>personalise the content of your texts</li>
|
||
<li>send and schedule bulk messages</li></ul>
|
||
<p class="govuk-body">You can also <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.documentation') }}">integrate with our API</a> to send text messages automatically.<p class="govuk-body">
|
||
|
||
<h3 class="heading heading-small" id="receive">Receive text messages</h3>
|
||
<p class="govuk-body">Let people send messages to your service or reply to your texts.</p>
|
||
<p class="govuk-body">You can see and reply to the messages you receive when you sign in to Notify. If you’re using our API, you can set up your own automated processes to manage replies.</p>
|
||
<p class="govuk-body"><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.support') }}">Contact us</a> to request a unique number for text message replies.</p>
|
||
|
||
<h3 class="heading heading-small" id="sender">Show people who your texts are from</h3>
|
||
<p class="govuk-body">When you send a text message with Notify, the sender name tells people who it's from.</p>
|
||
<p class="govuk-body">See <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.branding_and_customisation', _anchor='text-message-sender') }}">how to change the text message sender</a>.</p>
|
||
|
||
<h2 class="heading heading-medium">Pricing<h2>
|
||
<p class="govuk-body">Each service you add has a free annual allowance. After that it costs 1.58 pence (plus VAT) to send a text to a UK number.</p>
|
||
<p class="govuk-body">The free allowance is:</p>
|
||
<ul class="list list-bullet">
|
||
<li>250,000 free text messages for central government services</li>
|
||
<li>25,000 free text messages for other public sector services</li></ul>
|
||
<p class="govuk-body"><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.pricing') }}">See pricing</a> for more details.</p>
|
||
|
||
{% endblock %}
|