[Fixed]-Django 403 forbidden

1👍

You’re not sending the CSRF token. You have it in your form, but you’re posting data via Ajax not via a normal form submission; you need to include the token in the Ajax post data.

Leave a comment