mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-25 03:30:53 -04:00
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.
39 lines
995 B
HTML
39 lines
995 B
HTML
{% 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 you’ve used
|
||
it before
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="product-page-section">
|
||
</div>
|
||
|
||
{% endblock %}
|