diff --git a/README.MD b/README.MD
index 9372e13..2daba11 100644
--- a/README.MD
+++ b/README.MD
@@ -13,3 +13,13 @@ This web system enables users to log into the system and view videos using the b
- Easy to install
- Easily expandable and hackable to fit your needs
+
+
+npm dependencies
+```bash
+npm install express --save
+npm install fs --save
+npm install express-session --save
+npm install whiskers --save
+
+```
\ No newline at end of file
diff --git a/fileIO.js b/fileIO.js
index 02fae92..85a9668 100644
--- a/fileIO.js
+++ b/fileIO.js
@@ -21,6 +21,12 @@ module.exports =
*/
getFileAsJSON: function(fileName)
{
- return JSON.parse(fs.readFileSync(fileName, 'utf8'));
+ return JSON.parse(module.exports.getFile(fileName));
+ },
+
+
+ getFile: function(filename)
+ {
+ return fs.readFileSync(filename, 'utf8');
}
};
diff --git a/html/footer.html b/html/footer.html
new file mode 100644
index 0000000..1a29ceb
--- /dev/null
+++ b/html/footer.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+