{% extends 'base.html' %} {% block content %}
{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{field.label_tag}} {{field}} {% if field.label == "Password" %}Password should be 8 or more characters.{% endif %} {% if field.errors %}{{field.errors}}{% endif %}
{% endfor %}

Already have an account? Log in.

{% endblock %}