{% extends "core/site_base.html" %} {% block tabtitle %}Login - Simmate{% endblock %} {% block body %} {% load static %} {% load account socialaccount %} {% simmate_setting "website.require_login_internal" as REQUIRE_LOGIN_INTERNAL %} {% simmate_setting "website.login_message" as LOGIN_MESSAGE %}

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

{% get_providers as socialaccount_providers %} {% if socialaccount_providers %}
{% for provider in socialaccount_providers %} {% if provider.id == "google" %} Log in using Google {% elif provider.id == "github" %} Log in using Github {% elif provider.id == "microsoft" %} Log in using Microsoft {% endif %} {% endfor %}
{% endif %} {% if socialaccount_providers and not REQUIRE_LOGIN_INTERNAL %}

OR
{% endif %} {% if not REQUIRE_LOGIN_INTERNAL %} {% if form.errors %}
    {% for field, errors in form.errors.items %} {% for error in errors %}
  • {{ error|escape }}
  • {% endfor %} {% endfor %}
{% endif %}
{% csrf_token %}
{% comment %} {% endcomment %} {% if next %} {% endif %}
{% endif %}
{% endblock %}