Back to Django Allauth

Authenticate Form

allauth/socialaccount/providers/dummy/templates/dummy/authenticate_form.html

65.16.1566 B
Original Source

{% extends "socialaccount/base_entrance.html" %} {% load i18n %} {% load allauth %} {% block content %} {% element h1 %} Dummy Provider Login {% endelement %} {% element form form=form method="post" action=action_url %} {% slot body %} {% csrf_token %} {% element fields form=form %} {% endelement %} {% endslot %} {% slot actions %} {% element button type="submit" %} {% trans "Login" %} {% endelement %} {% element button form="cancel-form" type="submit" %} {% trans "Cancel" %} {% endelement %} {% endslot %} {% endelement %}

{% csrf_token %} {% endblock %}