Files
digest_app/templates/module_iam/permission_denied.html
2024-05-27 15:29:57 +05:30

25 lines
779 B
HTML

{% extends 'base_structure/layout/base_template.html' %}
{% load static %}
{% block stylesheet %}
{% endblock %}
{% block content %}
<div class="row layout-top-spacing">
<div id="content-wrapper">
<div class="container-fluid text-center">
<h1 class="w3-jumbo w3-animate-top w3-center"><code>Access Denied</code></h1>
<hr class="w3-border-white w3-animate-left" style="margin:auto;width:50%">
<h3 class="w3-center w3-animate-right">You dont have permission to view this site.</h3>
<h3 class="w3-center w3-animate-zoom">🚫🚫🚫🚫</h3>
<h6 class="w3-center w3-animate-zoom">error code:403 forbidden</h6>
</div>
</div>
</div>
{% endblock content %}
{% block javascript %}
{% endblock %}