{% extends "cosinnus/base.html" %} {% load i18n cosinnus_tags widget_tweaks %} {% block page_title %}{% trans "Sign up" %}{% endblock %} {% block jshead %} {% comment %} This page deals with authentication data and loads only the most necessary vendor scripts! {% endcomment %} {% endblock jshead %} {% block breadcrumb %}
  • {% trans "Login" %}
  • {% trans "Create account" %}
  • {% endblock breadcrumb %} {% block leftnav %} {% include "cosinnus/registration/leftnav.html" with current_page="signup" %} {% endblock leftnav %} {% block content %}
    {% csrf_token %}
    {{ form.non_field_errors }} {# Regular Field #} {% trans "Email address" as email_label %} {% trans "This will be used as your login. Notification emails will be sent to this address (if you want to receive them)." as email_legend %} {% trans "Example: mymail@example.com" as email_placeholder %} {% include 'cosinnus/fields/default_field.html' with field=form.email legend=email_legend label=email_label placeholder=email_placeholder first=True %} {# Regular Field #} {% trans "Password" as pass1_label %} {% trans "Enter a password you don't use anywhere else. The longer the better!" as pass1_legend %} {% trans "Password" as pass1_placeholder %} {% include 'cosinnus/fields/default_field.html' with field=form.password1 legend=pass1_legend label=pass1_label placeholder=pass1_placeholder %} {# Regular Field #} {% trans "Repeat your password just to make sure" as pass2_label %} {% trans "Repeat Password" as pass2_placeholder %} {% include 'cosinnus/fields/default_field.html' with field=form.password2 label=pass2_label placeholder=pass2_placeholder first=True %} {# Regular Field #} {% trans "Your name" as firstname_label %} {% trans "This name will be displayed to other users on the site" as firstname_legend %} {% trans "First name" as firstname_placeholder %} {% include 'cosinnus/fields/default_field.html' with field=form.first_name legend=firstname_legend label=firstname_label placeholder=firstname_placeholder %} {# Regular Field #} {% trans "Last name" as lastname_label %} {% trans "You can supply your last name to be displayed as well" as lastname_legend %} {% trans "Last name" as lastname_placeholder %} {% include 'cosinnus/fields/default_field.html' with field=form.last_name label=lastname_label legend=lastname_legend placeholder=lastname_placeholder %} {# Regular Field #} {% trans "Captcha" as captcha_label %} {% trans "We need to make sure you are a real person (sorry!)" as captcha_legend %} {% include 'cosinnus/fields/default_field.html' with field=form.captcha legend=captcha_legend label=captcha_label large_field=True %}
    {{ form.tos_check.errors }} {% render_field form.tos_check %} {% trans "I have read and accept the" context "read and accept the [Terms of Services]" %} {% trans "Terms and Services" %}
    {% endblock content %}