21 lines
562 B
HTML
21 lines
562 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Permission Denied</title>
|
||
|
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
{% block content %}
|
||
|
<div class="h-screen flex flex-col items-center text-center justify-center">
|
||
|
<p class="text-center">Oops looks like you don't have access to this page !</p>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
</body>
|
||
|
|
||
|
</html>
|