window.addEventListener('load',function () {
  setTimeout(()=>{
      document.querySelectorAll('.safe-from')?.forEach(function (el) {
          const  url = el.querySelector('.safe-url').getAttribute('data-url');
          el.setAttribute('action',url);
      })
  },1220);
})