Files
notifications-admin/app/templates/views/register-from-org-invite.html

36 lines
1.1 KiB
HTML
Raw Normal View History

2018-02-19 16:53:29 +00:00
{% extends "withoutnav_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% 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">
<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>
{% call form_wrapper() %}
{{ form.name(param_extensions={"classes": "govuk-!-width-three-quarters"}) }}
2018-02-19 16:53:29 +00:00
<div class="extra-tracking">
{{ form.mobile_number(param_extensions={
"classes": "govuk-!-width-three-quarters",
"hint": {"text": "Well send you a security code by text message"}
}) }}
2018-02-19 16:53:29 +00:00
</div>
{{ 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}}
{% endcall %}
2018-02-19 16:53:29 +00:00
</div>
</div>
{% endblock %}