{% extends "withoutnav_template.html" %} {% from "components/page-footer.html" import page_footer %} {% from "components/form.html" import form_wrapper %} {% block per_page_title %} Create an account {% endblock %} {% block maincolumn_content %}

Create an account

Your account will be created with this email address: {{invited_user.email_address}}

{% call form_wrapper() %} {# This field is to enable password managers to capture the username as well as the password, but should not be visible to users, nor should the view process the input. #}
{{ form.name(param_extensions={}) }} {% if invited_user.auth_type == 'sms_auth' %}
{{ form.mobile_number(param_extensions={ "hint": {"text": "We’ll send you a security code by text message"} }) }}
{% endif %} {{ form.password(param_extensions={ "hint": {"text": "At least 8 characters"}, "autocomplete": "new-password" }) }} {{ page_footer("Continue") }} {{form.service}} {{form.email_address}} {{form.auth_type}} {% endcall %}
{% endblock %}