diff --git a/README.md b/README.md deleted file mode 100644 index ea23925..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# firebase-auth -All course files for the Firebase authentication tutorial series on The Net Ninja YouTube channel. diff --git a/img/logo.svg b/img/logo.svg new file mode 100644 index 0000000..2dce1aa --- /dev/null +++ b/img/logo.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..2d9e9d8 --- /dev/null +++ b/index.html @@ -0,0 +1,128 @@ + + + + + + + + GameGuidez + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + \ No newline at end of file diff --git a/scripts/auth.js b/scripts/auth.js new file mode 100644 index 0000000..e69de29 diff --git a/scripts/index.js b/scripts/index.js new file mode 100644 index 0000000..73f710f --- /dev/null +++ b/scripts/index.js @@ -0,0 +1,10 @@ +// setup materialize components +document.addEventListener('DOMContentLoaded', function() { + + var modals = document.querySelectorAll('.modal'); + M.Modal.init(modals); + + var items = document.querySelectorAll('.collapsible'); + M.Collapsible.init(items); + +}); \ No newline at end of file