Files
penracourses/templates/403.html
T
2023-12-04 12:19:52 +00:00

14 lines
312 B
HTML

{% extends 'base.html' %}
{% block content %}
{% load static %}
<div class="">
<h2>403 error</h2>
{% if exception and not exception.strip %}
<p>{{ exception }}</p>
{% else %}
<p>Forbidden</p>
{% endif %}
<img src="{% static 'img/x-ray-radiation-no-unauthorised.png' %}" width="500px">
</div>
{% endblock %}