{% extends "base_web.html" %} {% block css_extra %} {% endblock %} {% block cabecera %} {% endblock %} {% block contenido %} logo_jugador
{% csrf_token %} {% if form_reg.username.errors %}
{{ form_reg.username.errors }}
{% endif %}
*
{% if form_reg.password.errors %}
{{ form_reg.password.errors }}
{% endif %}
*
{% if form_reg.first_name.errors %}
{{ form_reg.first_name.errors }}
{% endif %}
{% if form_reg.last_name.errors %}
{{ form_reg.last_name.errors }}
{% endif %}
{% if form_reg.email.errors %}
{{ form_reg.email.errors }}
{% endif %}
*
{% if form_reg.aceptar_condiciones.errors %}
{{ form_reg.aceptar_condiciones.errors }}
{% endif %}
{{ form_reg.aceptar_condiciones }}
*: Campos obligatorios
{% endblock %}