{# templates/accounts/register.html #} {% extends 'base.html' %} {% block title %}Crear Cuenta{% endblock %} {% block content %}

Crear Cuenta

Regístrate para comentar y reaccionar a los artículos

{% csrf_token %}
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}

{{ field.errors|striptags }}

{% endif %}
{% endfor %}

¿Ya tienes cuenta? Inicia sesión aquí

{% endblock %}