{% extends 'get_started/layout.html' %} {% load i18n %} {% block panel %}

{% trans "Create your profile" %}

{% if form.non_field_errors %}

{{ form.non_field_errors }}

{% endif %}
{% csrf_token %}
{% include 'snippets/form_errors.html' with errors_list=form.name.errors id="desc_name" %}
{% include 'snippets/form_errors.html' with errors_list=form.summary.errors id="desc_summary" %}
{{ form.avatar }} {% include 'snippets/form_errors.html' with errors_list=form.avatar.errors id="desc_avatar" %}
{% url 'directory' as path %}

{% trans "Your account will show up in the directory, and may be recommended to other BookWyrm users." %}

{% endblock %}