Files
notifications-admin/app/templates/views/signedout.html
Chris Hill-Scott f9d2034e4f Make the blue header on the home page full-width
This copies the style that Tim and Stephen have been developing for all
product pages.

It also pulls out the CSS for this into its own file, so that it could
potentially be reused.
2016-12-07 16:14:30 +00:00

39 lines
995 B
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/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 text messages and emails to your users
</h1>
<p>
If you work for a UK government department or agency you can try
it now.
</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>
{% endblock %}