{% extends "_base.html" %} {% load i18n %} {% load account socialaccount %} {% block title %}Sign In - MeshAdmin{% endblock %} {% block content %}

Sign in to MeshAdmin

Sign in to manage your mesh networks

{% get_providers as socialaccount_providers %} {% if socialaccount_providers %} {% for provider in socialaccount_providers %} {% if provider.id == "openid_connect" %} {% endif %} {% endfor %} {% if socialaccount_providers|length > 1 %}
Or continue with
{% for provider in socialaccount_providers %} {% if provider.id != "openid_connect" %}
{{ provider.name }}
{% endif %} {% endfor %}
{% endif %} {% endif %} {% if form.errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %}
{% endblock %}