{% 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 "Vosae is currently in beta. Feel free to contact us at support@vosae.com." %}

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

* {% trans "Required" %}

{% endblock %} {% block page_account_bottom %} {% trans "Already have an account? Log in" %} {% endblock %}