coming soon for login and signup

This commit is contained in:
Arjun Patel
2019-01-26 02:39:08 -08:00
parent 6e361bfcb9
commit 730fd80225
2 changed files with 11 additions and 2 deletions
+9
View File
@@ -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();