{% extends "core/base.html" %} {% 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" %}:

  • {% blocktrans with password_length=request.press.password_length %}Your password should be {{ password_length }} characters long.{% endblocktrans %}
  • {% if request.press.password_upper %}
  • {% blocktrans %}Your password should contain at least one upper case letter."{% endblocktrans %} %}
  • {% endif %} {% if request.press.password_number %}
  • {% blocktrans %}Your password should contain at least one number." %}{% endblocktrans %}
  • {% endif %}

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

{% bootstrap_form form %}

{% trans "By registering an account you agree to our" %} {% if journal_settings.general.privacy_policy_url %} {% trans "Privacy Policy" %} {% else %} {% trans "Privacy Policy" %} {% endif %}

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

{% endblock body %}