Files
notifications-admin/app/templates/views/send-sms.html

23 lines
500 B
HTML
Raw Normal View History

2015-11-30 14:17:54 +00:00
{% extends "admin_template.html" %}
{% from "components/sms-message.html" import sms_message %}
2015-11-30 14:17:54 +00:00
{% block page_title %}
GOV.UK Notify | Send text messages
2015-11-30 14:17:54 +00:00
{% endblock %}
{% block content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">Send text messages</h1>
<p>This page will be where we construct text messages</p>
{{ sms_message("hi") }}
2015-11-30 14:17:54 +00:00
<p>
<a class="button" href="check-sms" role="button">Continue</a>
</p>
</div>
</div>
{% endblock %}