diff --git a/dist/js/added.js b/dist/js/added.js index 7cb13b4..7db3a1d 100644 --- a/dist/js/added.js +++ b/dist/js/added.js @@ -1,4 +1,13 @@ $(document).ready(function() { + // popup when they try to log in or signup + $('#login, #signup').click(function() { + $('#popup') + .text('Coming Soon!') + .slideDown() + .delay(4000) + .slideUp(); + }); + // email submission $('#email-form').submit(function(e) { e.preventDefault(); diff --git a/index.html b/index.html index e05e61c..7d9dab4 100644 --- a/index.html +++ b/index.html @@ -36,10 +36,10 @@