CSRF verification failed. Request aborted.
Reason given for failure:
CSRF cookie not set.
In general, this can occur when there is a genuine Cross Site Request Forgery, or when Django's CSRF mechanism has not been used correctly. For POST forms, you need to ensure:
RequestContext
for the template, instead of Context.{% csrf_token
%} template tag inside each POST form that
targets an internal URL.CsrfViewMiddleware, then you must use
csrf_protect on any views that use the csrf_token
template tag, as well as those that accept the POST data.You're seeing the help section of this page because you have DEBUG =
True in your Django settings file. Change that to False,
and only the initial error message will be displayed.
You can customize this page using the CSRF_FAILURE_VIEW setting.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.
The bullet points in the error message provide some possible solutions. I'd start by adding {% csrf_token %} after your opening <form> tag in the template. Also of note though is that you've imported 'csrf' and 'RequestContext' in your view but you don't appear to be using them anywhere (at least not in the views code snippet you provided here).
On Thu, Aug 15, 2013 at 7:16 AM, JAI PRAKASH SINGH <jaiprakas...@gmail.com> wrote:
code in views.py
=================================
from django.http import HttpResponseRedirect
from django.core.mail import send_mail
<form action="/contact/" method="post">{% csrf_token %}
--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/NqLEzga6HoY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users...@googlegroups.com.