2018-02-19 16:53:29 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
|
{% 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 %}
|
2018-02-19 16:53:29 +00:00
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Create an account
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
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">
|
2018-02-19 16:53:29 +00:00
|
|
|
|
<h1 class="heading-large">Create an account</h1>
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">Your account will be created with this email: {{invited_org_user.email_address}}</p>
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper() %}
|
2020-08-07 09:53:09 +01:00
|
|
|
|
{{ form.name(param_extensions={"classes": "govuk-!-width-three-quarters"}) }}
|
2018-02-19 16:53:29 +00:00
|
|
|
|
<div class="extra-tracking">
|
|
|
|
|
|
{{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }}
|
|
|
|
|
|
</div>
|
2020-08-07 09:53:09 +01:00
|
|
|
|
{{ form.password(param_extensions={
|
|
|
|
|
|
"classes": "govuk-!-width-three-quarters",
|
|
|
|
|
|
"hint": {"text": "At least 8 characters"},
|
|
|
|
|
|
"autocomplete": "new-password"
|
|
|
|
|
|
}) }}
|
2018-02-19 16:53:29 +00:00
|
|
|
|
{{ page_footer("Continue") }}
|
|
|
|
|
|
{{form.organisation}}
|
|
|
|
|
|
{{form.email_address}}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2018-02-19 16:53:29 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|