{% extends "public/base.html" %} {% block title %}Create your account — {{ site.name }}{% endblock %} {% block content %}

Create your account

For clients with a project underway or about to start.

{% csrf_token %}
{% with msg=errors.first_name %}{% include "partials/error.html" %}{% endwith %}
{% with msg=errors.email %}{% include "partials/error.html" %}{% endwith %}
{% with msg=errors.password %}{% include "partials/error.html" %}{% endwith %}

At least 8 characters, not all numbers.

{% with msg=errors.password_confirm %}{% include "partials/error.html" %}{% endwith %}

Already registered? Log in

{% endblock %}