{% extends 'django_forms_workflows/base.html' %} {% block title %}Login - {{ site_name }}{% endblock %} {% block content %}

Welcome

Sign in to continue

{% if form.errors %} {% endif %} {% if next and user.is_authenticated %} {% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}
{% if sso_providers %}

Or sign in with

{% for provider in sso_providers %} {{ provider.display_name }} {% endfor %}
{% endif %}

Trouble logging in? Contact your administrator.

{% endblock %}