Проверка CSRF не удалась. Запрос отменен. Даже с {% crsf_token%} - PullRequest
0 голосов
/ 23 апреля 2020

Я получаю CSRF verification failed. Request aborted. после попытки входа в систему, даже если я предоставил тег шаблона {% csrf_token %}.

шаблоны / регистрация / логин. html

{% extends "base.html" %}

{% block content %}

<div class="container">
 <div class="card">

    {% if form.errors %}
    <p>Your username and password didn't match. Please try again.</p>
    {% endif %}

    {% if next %}
    {% if user.is_authenticated %}
    <p>Your account doesn't have access to this page. To proceed,
      please login with an account that has access.</p>
    {% else %}
    <p>Please login to see this page.</p>
    {% endif %}
    {% endif %}

    <form method="post" action="{% url 'login' %}">
      {% csrf_token %}
      {{ form|crispy }}
      <button type="submit" class="btn btn-success"><i class="fas fa-sign-in-alt"></i> Login</button>
      <input type="hidden" name="next" value="{{ next }}" />
    </form>

    {# Assumes you setup the password_reset view in your URLconf #}
    <p><a href="{% url 'password_reset' %}">Lost password?</a></p>
</div>
</div>

{% endblock content %}
...