mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-08 22:23:12 -04:00
This commit adds some stubbed data for the pages. The structure of the data is just a proposal, but it gives the templates something to work with for now.
23 lines
484 B
HTML
23 lines
484 B
HTML
{% extends "admin_template.html" %}
|
|
{% from "components/sms-message.html" import sms_message %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Send text messages
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-xlarge">Send text messages</h1>
|
|
|
|
{{ sms_message(message_template) }}
|
|
|
|
<p>
|
|
<a class="button" href="/check-sms" role="button">Send {{recipient_count}} text messages</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|