{% extends "base.html" %} {% load static %} {% load sass_tags %} {% load material_form %} {% block title %}UCC Member Login{% endblock %} {% block extrahead %} {{ block.super }} {{ form.media }} {% endblock %} {% block content_title %}

Login to MemberDB

{% endblock %} {% block sidebar-container %}{% endblock %} {% block content %}
{% if form.errors and not form.non_field_errors %}

{% if form.errors.items|length == 1 %}Please correct the error below.{% else %}Please correct the errors below.{% endif %}

{% endif %} {% if form.non_field_errors %} {% for error in form.non_field_errors %}

{{ error }}

{% endfor %} {% endif %}
Welcome to the UCC.

{% if not request.member %} If you do not have a UCC account yet, please apply for a membership by going to the registration page. {% else %} It appears you have already registered. If you have not yet received your UCC login details, please contact us. {% endif %}

Sign In
{% csrf_token %} {% form form=form %}{% endform %}
{% endblock %}