arrowcounter/counter/templates/403.html

9 lines
261 B
HTML
Raw Normal View History

2018-08-10 11:26:45 +00:00
{% extends "base.html" %}
{% block title %}Not authorized{% endblock %}
{% block content %}
<h1 class="center">Not authorized</h1>
<p>You are not authorized to perform this action. Please <a href="{% url "index" %}">return to the home</a>.</p>
{% endblock %}