{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block title %}{% trans "Signup" %}{% endblock %} {% block content %}
{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to {{site_name}}. {% endblocktrans %}
If you are signing up for the first time and seeing this page, please enter the following information: {% comment %} Posts back to whatever URL served this page rather than a fixed one. The same view is reachable at allauth's /3rdparty/signup/ and at the /social/signup/ alias the app's WebView allowlist expects (auctions/urls.py); hardcoding either would bounce the other one out of the flow. {% endcomment %} {% comment %} Same terms/privacy links as account/signup.html -- this is the other way to create an account. {% endcomment %}By signing up you agree to our terms of service and privacy policy.
{% endblock %}