cookiecutter-django/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/403_csrf.html
Marlon bb15e5a02e Create 403_csrf.html (#803)
This takes advantage of the ability to easily customize the 403 template for CSRF, introduced in Django 1.10.
2016-10-05 16:01:30 +02:00

10 lines
215 B
HTML

{% raw %}{% extends "base.html" %}
{% block title %}Forbidden (403){% endblock %}
{% block content %}
<h1>Forbidden (403)</h1>
<p>CSRF verification failed. Request aborted.</p>
{% endblock content %}{% endraw %}