2018-02-19 16:53:29 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
|
{% 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 %}
|
|
|
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="grid-col-8">
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<h1 class="font-body-2xl margin-bottom-3">Create an account</h1>
|
|
|
|
|
|
<p>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">
|
2020-08-07 13:46:15 +01:00
|
|
|
|
{{ form.mobile_number(param_extensions={
|
|
|
|
|
|
"classes": "govuk-!-width-three-quarters",
|
|
|
|
|
|
"hint": {"text": "We’ll send you a security code by text message"}
|
|
|
|
|
|
}) }}
|
2018-02-19 16:53:29 +00:00
|
|
|
|
</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") }}
|
2023-07-12 12:09:44 -04:00
|
|
|
|
{{form.organization}}
|
2018-02-19 16:53:29 +00:00
|
|
|
|
{{form.email_address}}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2018-02-19 16:53:29 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|