Merge branch 'master' into platform-admin

Conflicts:
	app/main/views/send.py
This commit is contained in:
Rebecca Law
2016-03-21 12:18:44 +00:00
21 changed files with 189 additions and 39 deletions

View File

@@ -15,7 +15,7 @@ Create a new password GOV.UK Notify
<p>If you have forgotten your password, we can send you an email to create a new password.</p>
<form autocomplete="off" method="post">
{{ textbox(form.email_address) }}
{{ textbox(form.email_address, safe_error_message=True) }}
{{ page_footer("Send email") }}
</form>

View File

@@ -73,6 +73,50 @@
can check that everything is fully working without accidentally sending
hundreds of text messages or emails.
</p>
<h2 class="heading-large" id="pricing">Pricing</h2>
<h3 class="heading-medium">Emails</h3>
<p>
Sending email through GOV.UK&nbsp;Notify is completely free.
</p>
<h3 class="heading-medium">Text messages</h3>
<ul class="list list-bullet">
<li>Free allowance: 250,000 SMS per service, per financial year</li>
<li>Standard rate: 1.8 pence per SMS</li>
<li>Fail-over rate: 2.5 pence per SMS</li>
</ul>
<p>
You only pay the fail-over rate if we cant deliver your text message
through our primary SMS provider.
</p>
<p>
We simply charge you the costs we pay to our delivery partners.
We dont mark these costs up in any way.
</p>
<h4 class="heading-small">SMS and text message length</h4>
<ul class="list list-bullet">
<li>Up to 160 characters = 1 SMS</li>
<li>Up to 306 characters = 2 SMS</li>
<li>Up to 459 characters = 3 SMS</li>
</ul>
<h3 class="heading-medium">No monthly charge or setup fee</h3>
<p>
There are no other charges for using Notify. Theres no monthly charge
or setup fee.
</p>
<p>
The Government Digital Service is funding the development and running
of Notify. Were also covering the cost of the free emails and text messages.
</p>
</div>
</div>

View File

@@ -16,7 +16,7 @@ Manage users GOV.UK Notify
<div class="grid-row">
<form method="post" class="column-three-quarters">
{{ textbox(form.email_address, hint='Email address must end in .gov.uk', width='1-1') }}
{{ textbox(form.email_address, hint='You must use an email address from a central government organisation', width='1-1', safe_error_message=True) }}
<fieldset class='yes-no-wrapper'>
<legend class='heading-small'>

View File

@@ -16,7 +16,7 @@ Create an account GOV.UK Notify
<form method="post" autocomplete="nope">
{{ textbox(form.name, width='3-4') }}
{{ textbox(form.email_address, hint="Your email address must end in .gov.uk", width='3-4') }}
{{ textbox(form.email_address, hint="You must use an email address from a central government organisation", width='3-4', safe_error_message=True) }}
{{ textbox(form.mobile_number, width='3-4') }}
{{ textbox(form.password, hint="Your password must have at least 10 characters", width='3-4') }}
{{ page_footer("Continue") }}

View File

@@ -18,7 +18,7 @@ GOV.UK Notify | Service settings
{% endif %}
<div class="column-three-quarters">
<form method="post">
{{ textbox(form_field) }}
{{ textbox(form_field, safe_error_message=True) }}
{{ page_footer(
'Save',
back_link=url_for('.user_profile'),