2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-11 13:15:10 +00:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Create an account
|
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
|
|
|
|
|
2020-02-19 11:57:15 +00:00
|
|
|
|
<div class="govuk-grid-row">
|
2020-02-19 12:36:02 +00:00
|
|
|
|
<div class="govuk-grid-column-two-thirds">
|
2016-02-02 14:05:45 +00:00
|
|
|
|
<h1 class="heading-large">Create an account</h1>
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper(autocomplete=True) %}
|
2020-08-07 15:16:04 +01:00
|
|
|
|
{{ form.name(param_extensions={"classes": "govuk-!-width-three-quarters"}) }}
|
|
|
|
|
|
{{ form.email_address(
|
|
|
|
|
|
param_extensions={
|
|
|
|
|
|
"hint": {"text": "Must be from a public sector organisation"},
|
|
|
|
|
|
"classes": "govuk-!-width-three-quarters",
|
|
|
|
|
|
"autocomplete": "email"
|
|
|
|
|
|
},
|
|
|
|
|
|
error_message_with_html=True
|
|
|
|
|
|
) }}
|
2017-10-16 16:51:44 +01:00
|
|
|
|
<div class="extra-tracking">
|
2020-08-07 13:46:15 +01:00
|
|
|
|
{{ form.mobile_number(param_extensions={
|
|
|
|
|
|
"hint": {"text": "We’ll send you a security code by text message"},
|
|
|
|
|
|
"classes": "govuk-!-width-three-quarters"
|
|
|
|
|
|
}) }}
|
2017-10-16 16:51:44 +01:00
|
|
|
|
</div>
|
2019-10-21 15:18:25 +01:00
|
|
|
|
<input class="govuk-visually-hidden" aria-hidden="true" tabindex="-1" id="defeat-chrome-autocomplete">
|
2020-08-07 09:53:09 +01:00
|
|
|
|
{{ form.password(param_extensions={"hint": {"text": "At least 8 characters"}, "classes": "govuk-!-width-three-quarters", "autocomplete": "new-password"}) }}
|
2017-11-14 17:01:04 +00:00
|
|
|
|
{{form.auth_type}}
|
2016-02-01 16:57:29 +00:00
|
|
|
|
{{ page_footer("Continue") }}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2016-02-01 16:57:29 +00:00
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-01 09:53:14 +00:00
|
|
|
|
{% endblock %}
|