mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-25 04:40:58 -05:00
This commit modifies the HTML `<title>` tags for all the pages. It makes two main changes: - make the title tag match the `<h1>` of the page, for better or worse - put the service name after the page title, seperated by an en dash, as per GOV.UK
37 lines
951 B
HTML
37 lines
951 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/sms-message.html" import sms_message %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/file-upload.html" import file_upload %}
|
||
|
||
{% block page_title %}
|
||
Send text messages – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Send text messages</h1>
|
||
|
||
<form method="POST" enctype="multipart/form-data">
|
||
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
{{ sms_message(template.content) }}
|
||
</div>
|
||
</div>
|
||
|
||
{{file_upload(form.file, button_text='Choose a CSV file')}}
|
||
|
||
{{ banner(
|
||
'You can only send messages to yourself until you <a href="{}">request to go live</a>'.format(
|
||
url_for('.service_request_to_go_live', service_id=service_id)
|
||
)|safe,
|
||
type='important'
|
||
) }}
|
||
|
||
{{ page_footer(
|
||
"Continue to preview"
|
||
) }}
|
||
|
||
</form>
|
||
{% endblock %}
|