aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Van Iseghem <[email protected]>2023-04-23 14:51:15 +0200
committerThomas Van Iseghem <[email protected]>2023-04-23 14:51:15 +0200
commit69290cc7efc5e46e811b38c39e4d74396766a289 (patch)
tree221421d293fa37333c2b77351c470958e0f10238
parent8f552f3cbc8a18e91a21c89b6665cad31f21f4ad (diff)
downloadOpenCortex-69290cc7efc5e46e811b38c39e4d74396766a289.tar.gz
OpenCortex-69290cc7efc5e46e811b38c39e4d74396766a289.zip
Add disclaimer to decryption tool
-rw-r--r--File-decryption/webapp/index.html4
-rw-r--r--File-decryption/webapp/style.css12
2 files changed, 16 insertions, 0 deletions
diff --git a/File-decryption/webapp/index.html b/File-decryption/webapp/index.html
index 5fa4986..0f05a7f 100644
--- a/File-decryption/webapp/index.html
+++ b/File-decryption/webapp/index.html
@@ -42,6 +42,10 @@
<input class="file-input" id="file-input" type="file">
</div>
</div>
+
+ <footer>
+ Any misuse of this tool is at your own risk. We do no condone any illegal use of this tool as it is intended for educational purposes only.
+ </footer>
</body>
</html> \ No newline at end of file
diff --git a/File-decryption/webapp/style.css b/File-decryption/webapp/style.css
index 64fa213..33d3c22 100644
--- a/File-decryption/webapp/style.css
+++ b/File-decryption/webapp/style.css
@@ -19,6 +19,18 @@ header {
background-color: rgb(10,10,10);
}
+footer {
+ padding: 1rem;
+ position: absolute;
+
+ /* put at the bottom of the page */
+ bottom: 0;
+ width: 100%;
+ background-color: rgb(18, 18, 18);
+ color: rgb(185, 185, 185);
+
+}
+
input{
padding: 0.5rem;
border-radius: 20px;