{% extends "customer/base_auth.html" %} {% block title %}Login{% endblock %} {% block left_heading %}Welcome Back{% endblock %} {% block left_subtext %}Login to access your events dashboard{% endblock %} {% block content %}

Sign In

Enter your credentials to continue

{% csrf_token %}
{% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
{% if form.password.errors %}
{{ form.password.errors }}
{% endif %}
Don't have an account? Sign Up
{% endblock %}