mirror of
https://github.com/bugsink/bugsink.git
synced 2026-04-28 02:41:40 -05:00
12 lines
233 B
HTML
12 lines
233 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}403 Forbidden{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="m-4">
|
|
<h1 class="text-4xl mt-4 font-bold">Permission denied</h1>
|
|
|
|
<div class="pt-2">{{ exception }}</div>
|
|
</div>
|
|
{% endblock %}
|