{% extends 'base.html' %} {% block title %} | Sign up with social account{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

Complete your {{ account.get_provider.name }} sign up

{% if form.errors %}

An error occurred. Please try again.

{% endif %}
{% csrf_token %}
{% if form.email.errors %}{{ form.email.errors|striptags }}{% endif %}
{% if form.username.errors %}{{ form.username.errors|striptags }}{% endif %}

Already signed up with an email address? Please sign in here.

{% endblock %} {% block libraries %} {% endblock %}