salvi/templates/forbidden.jinja2

13 lines
304 B
Django/Jinja
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.jinja2" %}
{% block title %}Access Denied - {{ app_name }}{% endblock %}
{% block content %}
<main class="error-page">
<h1 id="firstHeading">Forbidden</h1>
<div class="inner-content">
<p>You dont have permission to access this resource.</p>
</div>
</main>
{% endblock %}