10 lines
212 B
HTML
10 lines
212 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
{% load static %}
|
|
<div class="">
|
|
<h2>403 error</h2>
|
|
<img src="{% static 'img/x-ray-radiation-no-unauthorised.png' %}" width="500px">
|
|
Forbidden
|
|
</div>
|
|
{% endblock %} |