blob: 9b7ecebbac51c764b9e5af0183fa4dddbe5069c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{%extends "base/page.html"%}
{%block title%}Cross Site Request Detected{%endblock%}
{%block contents%}
<h1>Cross Site Request Detected</h1>
<p>
Your request to access this resource failed because the system detected
a Cross Site Request. This is either caused by a legitimate attempt to
inject data, or by your system not being configured to allow validation
of the request.
</p>
<p>
The most common reason for this error is that your browser
<strong>does not allow cookies</strong> on this request. Cookies are required for the
cross site protection to work.
</p>
<p>
The internal reason given was: <em>{{reason}}</em>
</p>
{%endblock%}
|