allauth.account 연장은 내가 그것을 무시 대신의 형태 i는 URL의 account_signup에 게시해야 할 일을장고 : allauth.account
를 사용하고자하는
{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Signup" %}{% endblock %}
{% block content %}
<h1>{% trans "Sign Up" %}</h1>
<p>{% blocktrans %}Already have an account? Then please <a href="{{ login_url }}">sign in</a>.{% endblocktrans %}</p>
<form class="signup" id="signup_form" method="post" action="{% url 'account_signup' %}">
{% csrf_token %}
{{ form.as_p }}
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
{% endif %}
<button type="submit">{% trans "Sign Up" %} »</button>
</form>
{% endblock %}
signup.html와 함께 제공 ?
는 'account_signup'URL이 계정을 생성하기 위해 필요에 따라 양식 필드가 표시 적어도 을 통과하는 POST 요청을 수신하는 것을 목표로한다 당신