9 lines
298 B
HTML
9 lines
298 B
HTML
{%- from 'common/macros.html' import subheader -%}
|
|
{%- extends 'base.html' -%}
|
|
{%- block title -%}Forbidden{%- endblock -%}
|
|
{%- block content -%}
|
|
{%- call() subheader('403 Forbidden') -%}
|
|
<span>You are not allowed to access this page or perform this action.</span>
|
|
{%- endcall -%}
|
|
{%- endblock -%}
|