mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-31 11:49:58 -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.
68 lines
3.6 KiB
HTML
68 lines
3.6 KiB
HTML
{% extends "content_template.html" %}
|
||
{% from "components/service-link.html" import service_link %}
|
||
|
||
{% block per_page_title %}
|
||
Branding and customisation
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="heading-large">Branding and customisation</h1>
|
||
|
||
<p class="govuk-body">This page explains how to:</p>
|
||
|
||
<ul class="list list-bullet">
|
||
<li><a class="govuk-link govuk-link--no-visited-state" href="#email-branding">change your email branding</a></li>
|
||
<li><a class="govuk-link govuk-link--no-visited-state" href="#reply-to-address">add a reply-to email address</a></li>
|
||
<li><a class="govuk-link govuk-link--no-visited-state" href="#text-message-sender">change the text message sender</a></li>
|
||
<li><a class="govuk-link govuk-link--no-visited-state" href="#letter-branding">change your letter branding</a></li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium" id="email-branding">Change your email branding</h2>
|
||
|
||
<p class="govuk-body">The default branding for email templates is the GOV.UK logo.</p>
|
||
|
||
<p class="govuk-body">To change your email branding:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the <b class="govuk-!-font-weight-bold">Email settings</b> section of the {{ service_link(current_service, 'main.service_settings', 'settings') }} page.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Change</b> on the <b class="govuk-!-font-weight-bold">Email branding</b> row.</li>
|
||
</ol>
|
||
|
||
<h2 class="heading-medium" id="reply-to-address">Add a reply-to email address</h2>
|
||
|
||
<p class="govuk-body">You can choose the email address that your users reply to. You must add at least one reply-to address for your service before you can <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.trial_mode_new') }}">request to go live</a>.</p>
|
||
|
||
<p class="govuk-body">To add a reply-to email address:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the <b class="govuk-!-font-weight-bold">Email settings</b> section of the {{ service_link(current_service, 'main.service_settings', 'settings') }} page.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Manage</b> on the <b class="govuk-!-font-weight-bold">Reply-to email addresses</b> row.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Add reply-to address</b>.</li>
|
||
</ol>
|
||
|
||
<h2 class="heading-medium" id="text-message-sender">Change the text message sender</h2>
|
||
|
||
<p class="govuk-body">The text message sender tells your users who the message is from.</p>
|
||
|
||
<p class="govuk-body">To change the text message sender from the default of ‘GOVUK’:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the <b class="govuk-!-font-weight-bold">Text message settings</b> section of the {{ service_link(current_service, 'main.service_settings', 'settings') }} page.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Manage</b> on the <b class="govuk-!-font-weight-bold">Text message senders</b> row.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Change</b> or <b class="govuk-!-font-weight-bold">Add text message sender</b>.</li>
|
||
</ol>
|
||
|
||
<h2 class="heading-medium" id="letter-branding">Change your letter branding</h2>
|
||
|
||
<p class="govuk-body">Letter templates do not have default branding.</p>
|
||
|
||
<p class="govuk-body">To add a logo to your letters:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the <b class="govuk-!-font-weight-bold">Letter settings</b> section of the {{ service_link(current_service, 'main.service_settings', 'settings') }} page.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Change</b> on the <b class="govuk-!-font-weight-bold">Letter branding</b> row.</li>
|
||
</ol>
|
||
|
||
{% endblock %}
|