From d1f29825d398064639cdcf83d9a25a4d13cf1684 Mon Sep 17 00:00:00 2001 From: Ivan Golikov Date: Thu, 9 Jan 2025 13:47:59 +0100 Subject: [PATCH] Moved static files to static/ folder --- index.html | 4 ++-- app.js => static/app.js | 0 config.js => static/config.js | 0 crypto.js => static/crypto.js | 0 styles.css => static/styles.css | 0 5 files changed, 2 insertions(+), 2 deletions(-) rename app.js => static/app.js (100%) rename config.js => static/config.js (100%) rename crypto.js => static/crypto.js (100%) rename styles.css => static/styles.css (100%) diff --git a/index.html b/index.html index 4bb007b..e8fa118 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ Secret Share - +
@@ -14,6 +14,6 @@
- + diff --git a/app.js b/static/app.js similarity index 100% rename from app.js rename to static/app.js diff --git a/config.js b/static/config.js similarity index 100% rename from config.js rename to static/config.js diff --git a/crypto.js b/static/crypto.js similarity index 100% rename from crypto.js rename to static/crypto.js diff --git a/styles.css b/static/styles.css similarity index 100% rename from styles.css rename to static/styles.css