2020-08-19 14:54:50 +01:00
|
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
|
|
|
|
|
|
|
|
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
2020-08-27 11:31:06 +01:00
|
|
|
|
An alert is not a normal text message.
|
2020-08-19 14:54:50 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% set mainClasses = "govuk-!-padding-top-0 govuk-!-padding-bottom-0" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
2020-08-25 11:31:25 +01:00
|
|
|
|
<div class="banner-tour banner-tour-no-fixed-height govuk-!-margin-top-0">
|
2020-08-19 14:54:50 +01:00
|
|
|
|
<div class="govuk-grid-row">
|
2020-08-25 11:31:25 +01:00
|
|
|
|
<div class="govuk-grid-column-one-half">
|
2020-08-19 14:54:50 +01:00
|
|
|
|
<h1 class="heading-medium">
|
2020-08-27 11:31:06 +01:00
|
|
|
|
An alert is not a normal text message.
|
2020-08-19 14:54:50 +01:00
|
|
|
|
</h1>
|
|
|
|
|
|
<p class="govuk-body heading-medium">
|
2020-08-25 11:31:25 +01:00
|
|
|
|
It’s broadcast directly from a mobile phone mast, so you don’t
|
|
|
|
|
|
need to know anyone’s phone number.
|
2020-08-19 14:54:50 +01:00
|
|
|
|
</p>
|
|
|
|
|
|
<p class="govuk-body heading-medium">
|
2020-08-25 11:31:25 +01:00
|
|
|
|
<a class="govuk-link govuk-link--no-visited-state" href='{{ url_for(".broadcast_tour", service_id=current_service.id, step_index=5) }}'>
|
|
|
|
|
|
Continue
|
2020-08-19 14:54:50 +01:00
|
|
|
|
</a>
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
2020-08-25 11:31:25 +01:00
|
|
|
|
<div class="govuk-grid-column-one-half">
|
|
|
|
|
|
<img src="{{ asset_url('images/broadcast-tour/4.png') }}" alt="">
|
|
|
|
|
|
</div>
|
2020-08-19 14:54:50 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|