diff options
author | Minteck <contact@minteck.org> | 2022-06-06 17:10:14 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-06-06 17:10:14 +0200 |
commit | 10b1ace835d908d32f99874facf8811534087d5b (patch) | |
tree | ecf068e4ac40f7470ca2b5ac6bd13bd8fbe13ba9 /Authentication/Disallowed | |
download | bits-server-10b1ace835d908d32f99874facf8811534087d5b.tar.gz bits-server-10b1ace835d908d32f99874facf8811534087d5b.tar.bz2 bits-server-10b1ace835d908d32f99874facf8811534087d5b.zip |
Initial commit
Diffstat (limited to 'Authentication/Disallowed')
-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> + |