diff --git a/index.html b/index.html index 8c3a336..a40a449 100644 --- a/index.html +++ b/index.html @@ -58,24 +58,6 @@ - - - - - - - - - - diff --git a/script.js b/script.js index 223c574..045deca 100644 --- a/script.js +++ b/script.js @@ -23,3 +23,12 @@ document.getElementById('ticketForm').addEventListener('submit', function (e) { alert('Ticket(s) successfully generated!'); }); + +function toggleVideo() { + const video = document.getElementById('myVideo'); + if (video.paused) { + video.play(); + } else { + video.pause(); + } + } \ No newline at end of file