{% extends "base.html" %} {% load crispy_forms_tags %} {% load static %} {% block content %}

{{ view|capfirst }}


{% if error %} {% endif %} {% if form %}
{% csrf_token %} {{ form|crispy }}
{% if view == 'login' %}

Don't have an account? Register here.

{% elif view == 'register' %}

{% if DEMO %} Pssst, this is a demo version. The registration key is {{ REGISTRATION_KEY }}. {% endif %} Already have an account? Login here.

{% endif %} {% else %}

Self-registration is disabled. Already have an account? Login here.

{% endif %}
{% endblock %}