form.addEventListener('submit', function(event) {
if (!login.value || !password.value) {
event.preventDefault();
popup.classList.add('login-popup-error');
setTimeout(function(){
popup.classList.add('login-popup-show');
popup.classList.remove('login-popup-error');
},1000)
return false;
}
localStorage.setItem('login', login.value);
}, false);
popup.classList.on('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){
$(this).removeClass('form-popup-error');
});