{% extends "core/base.html" %} {% comment %} This template is deprecated. Account pages are now part of the back-office. {% endcomment %} {% load materializecss %} {% load i18n %} {% load static %} {% block title %}{% trans "Register" %}{% endblock title %} {% block body %}
{% trans "Register for an account with" %} {{ request.press.name }}. {% if request.repository and request.repository.login_text %} {{ request.repository.login_text|safe }} {% endif %}

{% trans "Password Rules" %}:

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

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

{% include "common/elements/orcid_registration.html" with button_classes="btn wide-button orcid-button" %}
{% include "elements/forms/errors.html" %} {% csrf_token %} {{ form|materializecss }}

{% 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 %}