Advertisement
Milos_Jevtic

Registration events

Jul 10th, 2023 (edited)
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // 1. START REGISTRATION
  2.  
  3. <script>
  4.  window.dataLayer = window.dataLayer || [];
  5.  window.dataLayer.push({
  6.   event: 'start_registration'
  7.  });
  8. </script>
  9.  
  10.  
  11. // 2. LEGALREGISTRATION
  12.  
  13. <script>
  14.  window.dataLayer = window.dataLayer || [];
  15.  window.dataLayer.push({
  16.   event: 'legalRegistration',
  17.   method: 'google' // google, facebook ili email
  18.  });
  19. </script>
  20.  
  21.  
  22. // 3. START PHONE REGISTRATION
  23.  
  24. <script>
  25.  window.dataLayer = window.dataLayer || [];
  26.  window.dataLayer.push({
  27.   event: 'start_phone_registration'
  28.  });
  29. </script>
  30.  
  31.  
  32. // 4. ENTER SMS CODE
  33.  
  34. <script>
  35.  window.dataLayer = window.dataLayer || [];
  36.  window.dataLayer.push({
  37.   event: 'enter_sms_code'
  38.  });
  39. </script>
  40.  
  41.  
  42. // 5. END PHONE REGISTRATION
  43.  
  44. <script>
  45.  window.dataLayer = window.dataLayer || [];
  46.  window.dataLayer.push({
  47.   event: 'end_phone_registration'
  48.  });
  49. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement