You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
364 B

const email = document.getElementById("email");
const btnSubmit = document.getElementById("btn-submit");
btnSubmit.addEventListener('click', function(e){
e.preventDefault()
if(email.value === ""){
alert("Para se inscrever na nossa newsletter é preciso informar seu e-mail!")
}else{
window.location.pathname = "/outra/"
email.value = ""
}
})