diff options
Diffstat (limited to 'Authentication/Disallowed/index.php')
-rw-r--r-- | Authentication/Disallowed/index.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Authentication/Disallowed/index.php b/Authentication/Disallowed/index.php new file mode 100644 index 0000000..bae4da7 --- /dev/null +++ b/Authentication/Disallowed/index.php @@ -0,0 +1,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> + |