summaryrefslogtreecommitdiff
path: root/Authentication/Disallowed/index.php
blob: bae4da713b9cc81f7557af250f2ce3e28a8c0f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Authentication</title>
    <style>
        body {
            background: #222;
            color: white;
            font-family: sans-serif;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            inset: 0;
        }
    </style>
</head>
<body>
<div>
    <h2>Not allowed</h2>
    <p>You are not allowed to use this application. Please close it now.</p>
</div>
</body>
</html>