{% extends "account/base.html" %} {% load static i18n %} {% block head_title %}{% trans "Sign Up" %}{% endblock%} {% block auth_title %}{% trans "Sign Up, It's Free" %}{% endblock%} {% block auth_body %}

{% trans "Join baristandlab.com, Get certified." %}

{% csrf_token %} {% include 'account/snippets/form_error_list.html' with errors=form.non_field_errors %} {% include 'account/snippets/form_control.html' with field=form.username %} {% include 'account/snippets/form_control.html' with field=form.email %} {% include 'account/snippets/form_control.html' with field=form.password1 %} {% include 'account/snippets/form_control.html' with field=form.password2 %}

{% blocktrans trimmed %} By signing up, you agree to our Terms of Service and Privacy Policy, which we may update from time to time. We’ll occasionally send you account-related emails. {%endblocktrans%}

{% blocktrans trimmed %}Already have an account? Then please sign in.{% endblocktrans %}

{% endblock %}