{% extends "one_column_body.html" %} {% import "authopenid/authopenid_macros.html" as login_macros %} {% block title %}{% spaceless %}{% trans %}Signup{% endtrans %}{% endspaceless %}{% endblock %} {% block forestyle %} {% endblock %} {% block content %} {% if settings.PASSWORD_REGISTER_SHOW_PROVIDER_BUTTONS == True %}

{% trans %}Please register by clicking on any of the icons below{% endtrans %}

{% csrf_token %} {# hide_local_login == True because it is password reg form #} {{ login_macros.provider_buttons( login_form = login_form, major_login_providers = major_login_providers, minor_login_providers = minor_login_providers, hide_local_login = True, settings = settings ) }}

{% trans %}or create a new user name and password here{% endtrans %}

{% else %}

{% trans %}Create login name and password{% endtrans %}

{% trans %}If you prefer, create your forum login name and password here. However, please keep in mind that we also support OpenID login method. With OpenID you can simply reuse your external login (e.g. Gmail or AOL) without ever sharing your login details with anyone and having to remember yet another password.{% endtrans %} {%endif%}

{% csrf_token %} {{form.login_provider}}

{% trans %}Receive periodic updates by email{% endtrans %}

{{email_feeds_form.subscribe}} {% if email_feeds_form.errors %}

{% trans %}please select one of the options above{% endtrans %}

{% endif %}
{% if settings.USE_RECAPTCHA %}

{% trans %}Please read and type in the two words below to help us prevent automated account creation.{% endtrans %}

{{form.recaptcha}} {% endif %}
{% if settings.PASSWORD_REGISTER_SHOW_PROVIDER_BUTTONS == False %} {% trans %}or{% endtrans %} {% trans %}return to OpenID login{% endtrans %} {% endif %}
{% endblock %} {%block endjs%} {%include "authopenid/providers_javascript.html" %} {%endblock%}