Files
notifications-admin/app/templates/views/signedout.html
Chris Hill-Scott 9ec2f2b5d0 Add a ‘team’ section
This addresses part of the ‘is Notify dependable’ group of needs.

The ones it specifically and partially addresses are:
- is it reliable
- how is it supported

There’s more to come in this section, we’re doing this bit now because
it’s a nice conclusion to the page.
2016-12-07 16:14:32 +00:00

112 lines
3.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% from 'components/big-number.html' import big_number %}
{% from "components/banner.html" import banner_wrapper %}
{% from "components/phone.html" import phone %}
{% extends "fullwidth_template.html" %}
{% block page_title %}
GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<div class="product-page-intro">
<div class="product-page-intro-wrapper">
<div class="grid-row">
<div class="column-two-thirds">
<h1>
Send emails and text messages to your users
</h1>
<p>
Try GOV.UK Notify now if you work for a UK government
department or agency.
</p>
<div class="button-container">
<a class="button button-start" href='{{ url_for('.register' )}}'>
Create an account
</a>
or <a href="{{ url_for('.sign_in' )}}">sign in</a> if youve used
it before
</div>
</div>
</div>
</div>
</div>
<div class="product-page-section">
<div class="grid-row">
<div class="column-half">
<h2>
Control your content
</h2>
<p>
You dont need any technical knowledge to create email and
text&nbsp;message templates.
</p>
</div>
<div class="column-half">
<img src="/static/images/product/01-templates.svg">
</div>
</div>
</div>
<div class="product-page-section">
<div class="grid-row">
<div class="column-half">
<h2>
See how your messages perform
</h2>
<p>
Track how many messages youve sent and
find out which ones arent getting delivered.
</p>
</div>
<div class="column-half">
<img src="/static/images/product/02-reporting.svg">
</div>
</div>
</div>
<div class="product-page-section">
<h2 class="with-keyline">
Send messages manually or automatically
</h2>
<div class="grid-row">
<div class="column-half">
<p>
Upload a spreadsheet of email&nbsp;addresses or
phone&nbsp;numbers and Notify sends the messages.
</p>
<img src="/static/images/product/03-spreadsheet.svg">
</div>
<div class="column-half">
<p>
Integrate the GOV.UK Notify API with your web&nbsp;application or
back office system.
</p>
<img src="/static/images/product/04-api.svg">
</div>
</div>
</div>
<div class="product-page-section bottom-gutter-2">
<div class="grid-row">
<div class="column-half">
<h2 class="with-keyline">
The team
</h2>
<p>
GOV.UK Notify is built by the Government Digital Service
and is supported 24 hours a day, 7 days a week.
</p>
<p>
<a href="{{ url_for('main.feedback') }}">Contact the team</a> if you have a question or want
to give feedback.
</p>
</div>
<div class="column-half">
<img src="/static/images/product/team.jpg">
</div>
</div>
</div>
{% endblock %}