{% extends "base_bootstrap.html" %} {% block title %} Login {% endblock %} {% block content %}

Login

{% if next %} {% if user.is_authenticated %}

Your account doesn't have access to this page. To proceed, please login with an account that has access.

{% endif %} {% endif %} {% load crispy_forms_tags %}
{% csrf_token %} {{ form|crispy }}
{% if form.errors %}

If you dont have an account use Guest / user1234

{% endif %} {% if settings.SOCIAL_AUTH_GITHUB_KEY %}
Login with GitHub {% endif %} {% endblock %}