commit d824c67bb4e0700b4981a5fede3d968c1a31e2b4 Author: Simon V. Lejel Date: Tue Dec 28 00:08:19 2021 +0100 Add files from old Git diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..c139e44 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3390963 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Web Dev Team + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..809d221 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Blocked Domain Page + +The page to show when a blocked domain has been requested. \ No newline at end of file diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..3ad268d --- /dev/null +++ b/css/styles.css @@ -0,0 +1,4 @@ +body { + background-image: url("../img/background.jpg"); + background-size: cover; +}/*# sourceMappingURL=styles.css.map */ \ No newline at end of file diff --git a/css/styles.css.map b/css/styles.css.map new file mode 100644 index 0000000..30384fa --- /dev/null +++ b/css/styles.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["styles.scss"],"names":[],"mappings":"AAAA;EACI,8CAAA;EACA,sBAAA;AACJ","file":"styles.css"} \ No newline at end of file diff --git a/css/styles.scss b/css/styles.scss new file mode 100644 index 0000000..8466da2 --- /dev/null +++ b/css/styles.scss @@ -0,0 +1,4 @@ +body { + background-image: url("../img/background.jpg"); + background-size: cover; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..ca790b5 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + + + + + + Blocked Page - DCSL.dk + + + +
+

You are not allowed to be here

+

- Please return to the homepage or the previous page

+
+ + \ No newline at end of file diff --git a/js/script.js b/js/script.js new file mode 100644 index 0000000..edae8c0 --- /dev/null +++ b/js/script.js @@ -0,0 +1,3 @@ +function navigateBack() { + history.back(); +} \ No newline at end of file