{% extends "admin/core/large_form.html" %} {% load i18n foundation %} {% block contextual_title %} {% trans "Register for an account" %} {% endblock contextual_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Register for an account" %}
  • {% endblock breadcrumbs %} {% block title-section %}
    {% trans "Register for an account" %}
    {% endblock %} {% block form_content %} {% include "admin/elements/forms/messages_in_callout.html" with form=form %}
    {% include "common/elements/orcid_registration.html" with button_classes="button orcid-button" %}
    {% include "admin/elements/forms/field.html" with field=form.email %}
    {% include "admin/elements/forms/field.html" with field=form.salutation %} {% include "admin/elements/forms/field.html" with field=form.first_name %} {% include "admin/elements/forms/field.html" with field=form.middle_name %} {% include "admin/elements/forms/field.html" with field=form.last_name %} {% include "admin/elements/forms/field.html" with field=form.suffix %}
    {% include "admin/elements/forms/field.html" with field=form.department %} {% include "admin/elements/forms/field.html" with field=form.institution %} {% include "admin/elements/forms/field.html" with field=form.country %}
    {% if form.register_as_reader %} {% include "admin/elements/forms/field.html" with field=form.register_as_reader %} {% endif %}
    {% trans "Password Rules" %}

    {% blocktrans %} For more information read our password guide. {% endblocktrans %}

    {% include "admin/elements/forms/field.html" with field=form.password_1 %} {% include "admin/elements/forms/field.html" with field=form.password_2 %}
    {% if journal_settings.general.display_register_page_notice %} {{ journal_settings.general.register_page_notice|safe }} {% endif %}

    {% trans "By registering an account you agree to our" %} {% include "common/accounts/register_privacy_policy.html" %}.

    {% include "admin/elements/forms/field.html" with field=form.captcha %}
    {% for hidden_field in form.hidden_fields %} {{ hidden_field }} {% endfor %}
    {% include "admin/elements/forms/denotes_required.html" %} {% include "admin/core/accounts/password_guide.html" %} {% endblock form_content %} {% block js %} {% include "common/elements/edit_profile_js_block.html" %} {% endblock %}