A Python content management system designed for kirsle.net featuring a blog, comments and photo albums.
https://rophako.kirsle.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
722 B
18 lines
722 B
8 years ago
|
{% extends "layout.html" %}
|
||
|
{% block title %}Forbidden{% endblock %}
|
||
|
{% block content %}
|
||
|
|
||
|
<h1>Forbidden</h1>
|
||
|
|
||
|
Access to this page was denied. Most likely, this error was caused because a
|
||
|
check to prevent <a href="http://en.wikipedia.org/wiki/Cross-site_request_forgery">Cross-site
|
||
|
request forgery</a> has failed. This will sometimes happen if you had this site
|
||
|
open in two different browser tabs, and you submitted a form in one tab (on a
|
||
|
"newer" page) and then tried submitting a form on an older page.<p>
|
||
|
|
||
|
If this is the case, click your browser's "Back" button and then reload the
|
||
|
page you came from and try again (you may want to copy your message before
|
||
|
reloading in case your browser clears it out).
|
||
|
|
||
|
{% endblock %}
|