mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-26 09:13:58 -04:00
Merge pull request #715 from alphagov/fancy-homepage
Make it clearer what Notify is for from homepage
This commit is contained in:
@@ -11,9 +11,6 @@ Create an account – GOV.UK Notify
|
||||
<div class="grid-row">
|
||||
<div class="column-two-thirds">
|
||||
<h1 class="heading-large">Create an account</h1>
|
||||
|
||||
<p>If you’ve used GOV.UK Notify before, <a href="{{ url_for('.sign_in') }}">sign in to your account</a></p>
|
||||
|
||||
<form method="post" autocomplete="nope">
|
||||
{{ textbox(form.name, width='3-4') }}
|
||||
{{ textbox(form.email_address, hint="Must be from a central government organisation", width='3-4', safe_error_message=True) }}
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
{% from "components/banner.html" import banner_wrapper %}
|
||||
{% from "components/phone.html" import phone %}
|
||||
|
||||
{% extends "withoutnav_template.html" %}
|
||||
|
||||
{% block page_title %}
|
||||
@@ -6,23 +9,51 @@
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
<div class="grid-row">
|
||||
<div class="column-two-thirds">
|
||||
<h1 class="heading-xlarge">GOV.UK Notify</h1>
|
||||
<p>
|
||||
Making it easy to send text messages and emails to your users.
|
||||
{% 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.
|
||||
</p>
|
||||
<p>
|
||||
If you work for a UK government department or agency you can try it now.
|
||||
<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
|
||||
</p>
|
||||
<p>
|
||||
<a class="button" href="{{ url_for('.register' )}}" role="button">Set up an account</a>
|
||||
</p>
|
||||
<p>
|
||||
If you’ve used GOV.UK Notify before, <a href="{{ url_for('.sign_in' )}}">sign in to your account</a>.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-row phone-container">
|
||||
<div class="column-one-third">
|
||||
{{ phone(
|
||||
"07900911111",
|
||||
"""
|
||||
Joshua, we’ve started processing your application.
|
||||
Your reference number is 300312.
|
||||
"""
|
||||
) }}
|
||||
</div>
|
||||
<div class="column-one-third">
|
||||
{{ phone(
|
||||
"07900922222",
|
||||
"""
|
||||
Amala, we’ve started processing your application.
|
||||
Your reference number is 444250.
|
||||
"""
|
||||
) }}
|
||||
</div>
|
||||
<div class="column-one-third">
|
||||
{{ phone(
|
||||
"07900933333",
|
||||
"""
|
||||
Roman, we’ve started processing your application.
|
||||
Your reference number is 568821.
|
||||
"""
|
||||
) }}
|
||||
</div>
|
||||
</div>
|
||||
{% endcall %}
|
||||
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user