remove create account CTA if user signed in

This commit is contained in:
Chris Hill-Scott
2019-04-09 15:20:40 +01:00
parent c9bfca3c32
commit 22cbd8fd11
4 changed files with 38 additions and 30 deletions

View File

@@ -13,11 +13,13 @@
{{ sub_navigation(navigation_links) }}
</div>
<div class="column-two-thirds">
<h1 class="heading heading-large">Emails</h1>
<p>Send an unlimited number of emails for free with GOV.UK Notify.</p>
<p><a href="https://www.notifications.service.gov.uk/register">Create an account</a> and try Notify for yourself.</p>
<p>Send an unlimited number of emails for free with GOV.UK Notify.</p>
{% if not current_user.is_authenticated %}
<p><a href="https://www.notifications.service.gov.uk/register">Create an account</a> and try Notify for yourself.</p>
{% endif %}
<h2 class="heading heading-medium">Features</h2>
<p>Notify makes it easy to:</p>
<ul class="list list-bullet">
@@ -42,17 +44,17 @@
</ul>
<p><a href="https://www.notifications.service.gov.uk/support/ask-question-give-feedback">Contact the team</a> and ask us to turn this feature on for your service.</p>
<p><a href="https://www.notifications.service.gov.uk/documentation">Read the API documentation</a> for more information.</p>
<h3 class="heading heading-small">Add a reply-to address</h3>
<p>Notify lets you choose the email address that users reply to.</p>
<p>Emails with a reply-to address seem more trustworthy and are less likely to be labelled as spam.</p>
<p>You can add reply-to addresses in your service settings.</p>
<h2 class="heading heading-medium">Pricing</h2>
<p>Its free to send emails through GOV.UK Notify.</p>
<p><a href="https://www.notifications.service.gov.uk/pricing">See pricing</a> for more details.</p>
</div>
</div>
{% endblock %}

View File

@@ -16,7 +16,9 @@
<h1 class="heading heading-large">Letters</h1>
<p>GOV.UK Notify will print, pack and post your letters for you.</p>
<p><a href="https://www.notifications.service.gov.uk/register">Create an account</a> and try Notify for yourself.</p>
{% if not current_user.is_authenticated %}
<p><a href="https://www.notifications.service.gov.uk/register">Create an account</a> and try Notify for yourself.</p>
{% endif %}
<h2 class="heading heading-medium">Features</h2>
<p>Notify makes it easy to:</p>

View File

@@ -13,10 +13,12 @@
{{ sub_navigation(navigation_links) }}
</div>
<div class="column-two-thirds">
<h1 class="heading heading-large">Text messages</h1>
<p>With GOV.UK Notify you can send thousands of free text messages to UK and international numbers.</p>
{% if not current_user.is_authenticated %}
<p><a href="https://www.notifications.service.gov.uk/register">Create an account</a> and try Notify for yourself.</p>
{% endif %}
<h2 class="heading heading-medium">Features</h2>
<p>Notify makes it easy to:</p>
@@ -28,15 +30,15 @@
<h3 class="heading heading-small">Receive text messages</h3>
<p>Let people send messages to your service or reply to your texts.</p>
<p>You can see and reply to the messages you receive, or set up your own automated processes to manage replies.</p>
<p>You can see and reply to the messages you receive, or set up your own automated processes to manage replies.</p>
<p><a href="https://www.notifications.service.gov.uk/support/ask-question-give-feedback">Contact the team</a> to request a unique number for text message replies.</p>
<h3 class="heading heading-small">Show people who your texts are from</h3>
<p>When you send a text message with Notify, the sender name tells people who it's from.</p>
<p>You can change the text message sender name from the default of 'GOVUK' in your service settings.</p>
<h2 class="heading heading-medium">Pricing<h2>
<p>Each service you set up has a free annual allowance. After that it costs 1.58 pence (plus VAT) to send a text to a UK number.</p>
<p>Each service you set up has a free annual allowance. After that it costs 1.58 pence (plus VAT) to send a text to a UK number.</p>
<p>The free allowance is:</p>
<ul class="list list-bullet">
<li>250,000 free text messages for central government services</li>
@@ -45,6 +47,6 @@
</div>
</div>
{% endblock %}