{% extends 'booru/base.html' %} {% block css %} {% load staticfiles %} {% endblock %} {% block scripts %} {% endblock %} {% block body %}

Register

With a account, you are able to comment, upload images and mark favorites. These actions are public and are subject to web-crawlers.
Choose a username you are comfortable being associated with.

{% csrf_token %}
{{form.username}}
{% if form.username.errors %}
{{form.username.errors}}
{% endif %}
{{form.email}}
{% if form.email.errors %}
{{form.email.errors}}
{% endif %}
{{form.password1}}
{% if form.password1.errors %}
{{form.password1.errors}}
{% endif %}
{{form.password2}}
{% if form.password2.errors %}
{{form.password2.errors}}
{% endif %}
{% endblock %}