Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.03 KB | None | 0 0
  1. </head>
  2. <body>
  3. <div id="client">
  4. <habbo-client-error>
  5. <div class="client-error__background-frank">
  6. <div class="client-error__text-contents">
  7. <h1 class="client-error__title">You're nearly in Habboon!</h1>
  8. <p>Click the yellow Hotel button below, then click 'run Flash' when prompted to. See you in the Hotel!</p>
  9. </div>
  10. <div class="client-error__hotel-button-div">
  11. <a href="https://www.adobe.com/go/getflashplayer" target="_blank" rel="noopener noreferrer" class="hotel-button">
  12. <span class="hotel-button__text">Hotel</span>
  13. </a>
  14. <a href="https://chrome.google.com/webstore/detail/habboon-automatic-flash-a/akcafbaobcipanhmmfmkpneejopclhfg/" target="_blank">
  15. <img src="/web-gallery/client/chrome-store.png" style="position: absolute;  right: 157px; top: -14px;">
  16. </a>
  17. </div>
  18. </div>
  19. </habbo-client-error>
  20. </div>
  21. <div id="client-alerts"></div>
  22. <div id="advert-container">
  23. <div id="room">
  24. <div id="timer">
  25. This advert supports Habboon, however closing in <b>30</b> seconds!
  26. </div>
  27. <div id="close">
  28. <a href="#" onclick="closeAd();">Close Advertisement</a>
  29. </div>
  30. <div class="ad-holder">
  31. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  32. <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-2766949656227931" data-ad-slot="7239228802"></ins>
  33. <script>
  34.                    (adsbygoogle = window.adsbygoogle || []).push({});
  35.                </script>
  36. </div>
  37. </div>
  38. </div>
  39. <script src="https://www.habboon.pw/web-gallery/client/js/jquery.timer.js" type="text/javascript"></script>
  40. <script src="https://www.habboon.pw/web-gallery/client/js/client.js" type="text/javascript"></script>
  41. <script src="/js/manifest.js?id=d64713044d4b02b1808b"></script>
  42. <script src="/js/vendor.js?id=6d12c4bed33eecd75826"></script>
  43. <script src="/js/app.js?id=56ac28f9c85516a623f6"></script>
  44. <div id="notification-center"></div>
  45. <script>
  46.    Echo.channel('public.client')
  47.        .listen('Client\\AlertEvent', (e) => {
  48.            if (e.message.length > 0) {
  49.                $('#notification-center').prepend('<div class="alert alert-' + e.id + ' alert-info"><span class="close"><i class="fas fa-times"></i></span><span class="text">' + e.message + '</span></div>');
  50.  
  51.                 setTimeout(function () {
  52.                     $('.alert-' + e.id).fadeOut();
  53.                     $('.alert-' + e.id).remove();
  54.                 }, 60000);
  55.             }
  56.         });
  57.  
  58.         Echo.private('user.' + 1424663)
  59.         .listen('UserAlertEvent', (e) => {
  60.             $('#notification-center').prepend('<div class="alert alert-' + e.id + '"><span class="close"><i class="fas fa-times"></i></span><span class="text">' + e.text + '</span></div>');
  61.  
  62.             setTimeout(function () {
  63.                 $('.alert-' + e.id).fadeOut();
  64.                 $('.alert-' + e.id).remove();
  65.             }, 60000);
  66.         });
  67.    
  68.     /* notifications */
  69.     $(document).on('click', '.alert', function (e) {
  70.         e.preventDefault();
  71.  
  72.         $(this).fadeOut();
  73.     });
  74. </script>
  75. </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement