24 lines
484 B
HTML
24 lines
484 B
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
{% load staticfiles %}
|
||
|
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
||
|
<link href="{% static 'images/favicon.ico' %}" rel="shortcut icon">
|
||
|
<title>{{ settings.title }}</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="container">
|
||
|
<img src="{{ settings.logo }}" class="mainLogo">
|
||
|
<h1>{{ settings.title }}</h1>
|
||
|
<hr/>
|
||
|
<p>{{ settings.message_access_denied }}</p>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|