var PasswordForgot = ModalFormView.extend({ el: ".mediaDrawer.passwordForgot", action: "/auth/forgotPassword", validate: function(){ var errors = [] var email = this.$("#emailInput").val() if (! email.length) { errors.push("Please enter your email address"); } if (email.indexOf("@") === -1) { errors.push("Sorry, that is not a valid email address"); } return errors }, success: function(res){ AlertModal.alert("Check your email, you should receive further instructions momentarily.", function(e){ window.location.href = "/" }) }, })