2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
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
|
|
|
|
|
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>
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper(autocomplete=True) %}
|
2023-08-25 11:38:07 -04:00
|
|
|
|
{{ form.name(param_extensions={}) }}
|
2020-08-07 15:16:04 +01:00
|
|
|
|
{{ form.email_address(
|
|
|
|
|
|
param_extensions={
|
2023-01-05 21:33:15 -05:00
|
|
|
|
"hint": {"text": "Must be from a public sector organization"},
|
2020-08-07 15:16:04 +01:00
|
|
|
|
"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"},
|
|
|
|
|
|
}) }}
|
2017-10-16 16:51:44 +01:00
|
|
|
|
</div>
|
2023-08-25 11:38:07 -04:00
|
|
|
|
{{ form.password(param_extensions={"hint": {"text": "At least 8 characters"}, "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 %}
|