2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-03-02 15:25:04 +00:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2016-02-08 09:23:51 +00:00
|
|
|
|
Create an account – GOV.UK Notify
|
2015-11-25 16:21:28 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
2016-02-01 16:57:29 +00:00
|
|
|
|
<div class="column-two-thirds">
|
2016-02-02 14:05:45 +00:00
|
|
|
|
<h1 class="heading-large">Create an account</h1>
|
2016-03-09 11:21:53 +00:00
|
|
|
|
<p>Your account will be created with this email: {{email_address}}</p>
|
2016-03-02 15:25:04 +00:00
|
|
|
|
<form method="post" autocomplete="nope">
|
|
|
|
|
|
{{ textbox(form.name, width='3-4') }}
|
2016-08-22 10:17:03 +01:00
|
|
|
|
{{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }}
|
2016-03-02 15:25:04 +00:00
|
|
|
|
{{ textbox(form.password, hint="Your password must have at least 10 characters", width='3-4') }}
|
|
|
|
|
|
{{ page_footer("Continue") }}
|
|
|
|
|
|
{{form.service}}
|
2016-03-08 16:29:05 +00:00
|
|
|
|
{{form.email_address}}
|
2016-03-02 15:25:04 +00:00
|
|
|
|
</form>
|
2016-02-01 16:57:29 +00:00
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-01 09:52:31 +00:00
|
|
|
|
{% endblock %}
|