mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-18 13:39:57 -04:00
Adds a back button instead of a back link (more prominent, you’re likely to go back on these pages if you’ve made a mistake) Tweaks to wording
39 lines
988 B
HTML
39 lines
988 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 %}
|
|
GOV.UK Notify | Send text messages
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Send text messages</h1>
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
|
|
|
{{ sms_message(template.content) }}
|
|
|
|
{{file_upload(form.file)}}
|
|
|
|
<p>
|
|
<a href="#">Download an example CSV file</a>
|
|
</p>
|
|
|
|
{{ 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='info'
|
|
) }}
|
|
|
|
{{ page_footer(
|
|
"Continue to preview",
|
|
back_link=url_for(".choose_sms_template", service_id=service_id),
|
|
back_link_text="Back"
|
|
) }}
|
|
|
|
</form>
|
|
{% endblock %}
|