18 lines
480 B
HTML
18 lines
480 B
HTML
{% extends "master.html" %}
|
|
|
|
{% block title %}Unauthorized :'({% endblock %}
|
|
{% set tag = "error" %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="container p-t-3">
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<h2>Unauthorized (401)</h2>
|
|
<p>You are not authorized to display the requested page.</p>
|
|
<p>If you're not logged in, try to login; if you're already done,
|
|
that probably means you do not have sufficient access.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|