{% extends "core/base.html" %} {% comment %} This template is deprecated. Account pages are now part of the back-office. {% endcomment %} {% load bootstrap4 %} {% load i18n %} {% block title %}{% trans "Register" %}{% endblock title %} {% block body %}
{% csrf_token %}
{% trans "Register for an account with" %} {{ request.press.name }}.

{% trans "Password Rules" %}:

    {% include "common/elements/password_rules.html" %}

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

{% include "common/elements/orcid_registration.html" with button_classes="btn orcid-button btn-block" %}
{% bootstrap_form form %}

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

{% if journal_settings.general.display_register_page_notice %} {{ journal_settings.general.register_page_notice|safe }} {% endif %}

{% endblock body %}