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 %}
|
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>
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">
|
2018-07-02 09:16:48 +01:00
|
|
|
|
Your account will be created with this email address:
|
|
|
|
|
|
<span class="nowrap">{{invited_user.email_address}}</span>
|
|
|
|
|
|
</p>
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper() %}
|
2016-03-02 15:25:04 +00:00
|
|
|
|
{{ textbox(form.name, width='3-4') }}
|
2017-11-14 15:53:38 +00:00
|
|
|
|
{% if invited_user.auth_type == 'sms_auth' %}
|
|
|
|
|
|
<div class="extra-tracking">
|
|
|
|
|
|
{{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
2019-07-16 17:01:54 +01:00
|
|
|
|
{{ textbox(form.password, hint="At least 8 characters", width='3-4', autocomplete='new-password') }}
|
2016-03-02 15:25:04 +00:00
|
|
|
|
{{ page_footer("Continue") }}
|
|
|
|
|
|
{{form.service}}
|
2016-03-08 16:29:05 +00:00
|
|
|
|
{{form.email_address}}
|
2017-11-14 15:53:38 +00:00
|
|
|
|
{{form.auth_type}}
|
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:52:31 +00:00
|
|
|
|
{% endblock %}
|