blob: a1032115967acaa8b0c1525290b6ec7c4799455c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{%extends "navbase.html"%}
{%block title%}Cross Site Request Detected{%endblock%}
{%block content%}
<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
<b>does not allow cookies</b> on this request. Cookies are required for the
cross site protection to work.
</p>
<p>
The internal reason given was: <i>{{reason}}</i>
</p>
{%endblock%}
|