script.js 1.0 KB

123456789101112131415161718192021
  1. const submitButton = document.getElementById('submitButton');
  2. submitButton.addEventListener('click', function() {
  3. event.preventDefault();
  4. const emailInput = document.getElementById('email');
  5. const phoneInput = document.getElementById('phone');
  6. const nameInput = document.getElementById('name');
  7. const apartmentlInput = document.getElementById('apartment');
  8. const framelInput = document.getElementById('frame');
  9. const homeInput = document.getElementById('home');
  10. const streetInput = document.getElementById('street');
  11. const cityInput = document.getElementById('city');
  12. if (emailInput.value === '' || phoneInput.value === '' || nameInput.value === '' || apartmentlInput.value === ''
  13. || framelInput.value === '' || homeInput.value === '' || streetInput.value === '' || cityInput.value === '') {
  14. alert('Пожалуйста, заполните все поля формы!');
  15. } else {
  16. alert('Оплачено!');
  17. window.location.href = 'index.html';
  18. }
  19. });