mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-06 00:48:46 -04:00
Based on discussion with Pete. Make the blue banner an ‘important’ banner (copied from Register to Vote, used because it’s not as boxy and fits on the page better). Remove the back button because you haven’t changed any data yet. If you need to go back you can just press back or start again. Make the filename stand out more. Remove the ‘download example’ link. Will need to revist the best way of doing this. Make text messages consistently 2/3rd width.
37 lines
949 B
HTML
37 lines
949 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">
|
|
|
|
<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 %}
|