mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-03 03:40:14 -06: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 %}
|