2016-06-03 16:55:59 +01:00
|
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
|
|
|
|
|
{% from "components/phone.html" import phone %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2016-02-08 09:23:51 +00:00
|
|
|
|
GOV.UK Notify
|
2015-11-25 16:21:28 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2016-06-03 16:55:59 +01:00
|
|
|
|
{% call banner_wrapper(type='intro') %}
|
|
|
|
|
|
<h1 class="heading-medium">
|
|
|
|
|
|
GOV.UK Notify makes it easy to send text messages and emails to
|
|
|
|
|
|
your users.
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
<p class="heading-medium">
|
|
|
|
|
|
If you work for a UK government department or agency you can try
|
|
|
|
|
|
it now.
|
2016-02-01 16:57:29 +00:00
|
|
|
|
</p>
|
2016-06-03 16:55:59 +01:00
|
|
|
|
<p class="button-block">
|
|
|
|
|
|
<a class="button button-start" href='{{ url_for('.register' )}}'>
|
|
|
|
|
|
Create an account
|
|
|
|
|
|
</a>
|
|
|
|
|
|
or <a href="{{ url_for('.sign_in' )}}">sign in</a> if you’ve used
|
|
|
|
|
|
it before
|
2016-02-01 16:57:29 +00:00
|
|
|
|
</p>
|
2016-06-03 16:55:59 +01:00
|
|
|
|
<div class="grid-row phone-container">
|
|
|
|
|
|
<div class="column-one-third">
|
|
|
|
|
|
{{ phone(
|
|
|
|
|
|
"07900911111",
|
|
|
|
|
|
"""
|
|
|
|
|
|
Joshua, we’ve started processing your application.
|
2016-06-22 14:36:20 +01:00
|
|
|
|
Your reference number is 300312.
|
2016-06-03 16:55:59 +01:00
|
|
|
|
"""
|
|
|
|
|
|
) }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="column-one-third">
|
|
|
|
|
|
{{ phone(
|
|
|
|
|
|
"07900922222",
|
|
|
|
|
|
"""
|
|
|
|
|
|
Amala, we’ve started processing your application.
|
2016-06-22 14:36:20 +01:00
|
|
|
|
Your reference number is 444250.
|
2016-06-03 16:55:59 +01:00
|
|
|
|
"""
|
|
|
|
|
|
) }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="column-one-third">
|
|
|
|
|
|
{{ phone(
|
|
|
|
|
|
"07900933333",
|
|
|
|
|
|
"""
|
|
|
|
|
|
Roman, we’ve started processing your application.
|
2016-06-22 14:36:20 +01:00
|
|
|
|
Your reference number is 568821.
|
2016-06-03 16:55:59 +01:00
|
|
|
|
"""
|
|
|
|
|
|
) }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endcall %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2015-12-01 09:54:58 +00:00
|
|
|
|
{% endblock %}
|