{% extends "core_components/site_base.html" %} {% block tabtitle %} Simmate | Login {% endblock %} {% block banner %} {% include "core_components/header.html"%} {% endblock %} {% block body %} {% load crispy_forms_tags %} {% load static %} {% load account socialaccount %}

Sign In

{% 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. {% else %} Please login to see this page. {% endif %} {% else %} Please login to access extra features. {% endif %}

{% get_providers as socialaccount_providers %} {% if socialaccount_providers %}
{% for provider in socialaccount_providers %}
{% if provider.id == "google" %} Log in using Google {% endif %} {% if provider.id == "github" %} Log in using Github {% endif %}
{% endfor %}
{% endif %}
{% csrf_token %} {{ form | crispy }} {% if next %} {% endif %}

Don't have an account? Sign Up

{% endblock %}