{% extends "account/base.html" %} {% load i18n static %} {% block title %}{% trans "Signup page" context "Html title" %} | {{ block.super }}{% endblock %} {% block meta_property_og_title %}{% trans "Signup page" context "Html title" %} | {{ block.super }}{% endblock %} {% block meta_property_twitter_title %}{% trans "Signup page" context "Html title" %} | {{ block.super }}{% endblock %} {% block content %}{{ block.super }}{% endblock %} {% block page_account_title %}{% trans 'Sign up to Vosae' %}{% endblock %} {% block page_account_content %}

{% trans "Welcome to Vosae, please set your password." %}

{% csrf_token %} {% for field in form %}
{{ field.label_tag }}
{{ field }} {% if field.errors %} {% with field.errors|first as first_error %} - {{ first_error }} {% endwith %} {% elif field.help_text %} {{ field.help_text }} {% endif %}
{% endfor %}

{% endblock %}